Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0458-9.cs
1 // CS0458: The result of the expression is always `null' of type `int?'
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
4
5 public class C
6 {
7         public static void Main ()
8         {
9                 b = (null & 0) != null;
10         }
11 }