2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0173-4.cs
blobc0b7b58428ca991637591e131f80d19723ce14c2
1 // CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `null' and `null'
2 // Line: 8
4 class X
6 static void Main (string[] args)
8 bool b = args.Length > 0 ? null : null;