Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0173.cs
1 // CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `null' and `null'
2 // Line: 10
3
4 using System;
5
6 class X
7 {
8         static int Main (string[] args)
9         {
10                 int[] t = args.Length > 0 ? null : null;
11                 return t == null ? 0 : 1;
12         }
13 }