"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0458.cs
blobd504a580e6b8c1a5052f2729f025ef30f4d6baaa
1 // CS0458: The result of the expression is always `null' of type `bool?'
2 // Line: 8
3 // Compiler options: -warnaserror -warn:2
5 class C
7 static void Foo()
9 bool? b = null as bool?;