Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0162-4.cs
1 // CS0162: Unreachable code detected
2 // Line: 13
3 // Compiler options: -warnaserror -warn:2
4
5 using System;
6
7 class C {
8         bool T () { return true; }
9
10         void Close()
11         {       
12                 if (T () && false)
13                         Console.WriteLine ("error");
14         }
15 }
16
17 class XXXX { static void Main () {} }