* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs0037-7.cs
blob49a1f61ed5ebcf3140531e11a6264591ba30ec52
1 // CS0037: Cannot convert null to `bool' because it is a value type
2 // Line: 8
4 class X
6 static void Main (string[] args)
8 bool b = args.Length > 0 ? null : null;