[mcs] C# 7 tuple (foundation only).
[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 }