Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0458-7.cs
1 // CS0472: The result of the expression is always `null' of type `MyEnum?'
2 // Line: 17
3 // Compiler options: -warnaserror -warn:2
4
5 using System;
6
7 enum MyEnum
8 {
9         Value_1
10 }
11
12 class C
13 {
14         public static void Main ()
15         {
16                 var d = MyEnum.Value_1;
17                 var x = d & null;
18         }
19 }