2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0458-7.cs
blob0935e36c2c7e07bce4c0edb93796f14a4adc4e39
1 // CS0472: The result of the expression is always `null' of type `MyEnum?'
2 // Line: 17
3 // Compiler options: -warnaserror -warn:2
5 using System;
7 enum MyEnum
9 Value_1
12 class C
14 public static void Main ()
16 var d = MyEnum.Value_1;
17 var x = d & null;