Reenable a bunch of disabled iOS Mono SDKs test suites (#19301)
[mono-project.git] / mcs / errors / cs0183-6.cs
bloba94ec8d51ade4ac43ffb036f480b1f37219abff2
1 // CS0183: The given expression is always of the provided (`System.Enum') type
2 // Line: 13
3 // Compiler options: -warnaserror
5 using System;
7 enum E { Item };
9 class C
11 static bool Check (E e)
13 return e is Enum;