for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0472-7.cs
blob80be3d9ace71427a19fa2fe49e2b682a9697ad43
1 // CS0472: The result of comparing value type `E' with null is always `false'
2 // Line: 14
3 // Compiler options: -warnaserror
5 enum E
9 class X
11 public static void Main ()
13 E u = 0;
14 var b = u == (E?)null;