TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs0464-3.cs
blob5c4632b603e1b6fe1862b9e29bc039a756c633ea
1 // CS0464: The result of comparing type `int?' with null is always `false'
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
5 public class X
7 public static bool Compute ()
9 return null >= null;