"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0184-8.cs
blob13a8e489c5bc44485f7455a140a8e35b84927d44
1 // CS0184: The given expression is never of the provided (`bool?') type
2 // Line: 13
3 // Compiler options: -warnaserror -warn:1
5 using System;
7 class X
9 void Foo ()
11 int? i = null;
13 if (i is bool?) {