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