Align libgcmonosgen vcxproj with makefile.
[mono.git] / mcs / errors / cs0183-6.cs
1 // CS0183: The given expression is always of the provided (`System.Enum') type
2 // Line: 13
3 // Compiler options: -warnaserror
4
5 using System;
6
7 enum E { Item };
8
9 class C
10 {
11         static bool Check (E e)
12         {
13                 return e is Enum;
14         }
15 }