2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0162-4.cs
blob1859fb3892182106d7189ee5288d4496710d2f57
1 // cs0162.cs: Unreachable code detected
2 // Line: 13
3 // Compiler options: -warnaserror -warn:2
5 using System;
7 class C {
8 bool T () { return true; }
10 void Close()
12 if (T () && false)
13 Console.WriteLine ("error");
17 class XXXX { static void Main () {} }