2010-07-25 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / errors / cs0162-4.cs
1 // cs0162.cs: Unreachable code detected
2 // Line: 13
3 // Compiler options: -warnaserror -warn:2
4
5 using System;
6
7 class C {\r
8         bool T () { return true; }\r
9
10         void Close()
11         {       
12                 if (T () && false)
13                         Console.WriteLine ("error");
14         }
15 }
16
17 class XXXX { static void Main () {} }