Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0162-2.cs
1 // CS0162: Unreachable code detected
2 // Line: 18
3 // Compiler options: -warnaserror -warn:2
4
5 using System;
6
7 class C {
8         public enum Flags {
9                 Removed = 0,
10                 Public  = 1
11         }
12
13         public Flags    _enumFlags;
14                 
15         internal void Close()
16         {       
17                 if ((_enumFlags & Flags.Removed) != 0)
18                         Console.WriteLine ("error");
19         }
20 }