Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / gcs0472-4.cs
blob22f943579f10a96e9461218baafaefff9f094f54
1 // CS0472: The result of comparing value type `int' with null is `false'
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
5 class C
7 public static void Main ()
9 System.Console.WriteLine(5 == (long?)null);