New tests.
[mono.git] /
1 // CS0037: Cannot convert null to `bool' because it is a value type
2 // Line: 8\r
3
4 class X\r
5 {\r
6         static void Main (string[] args)\r
7         {\r
8                 bool b = args.Length > 0 ? null : null;\r
9         }\r
10 }\r