blob: cdadccdcd51c9dd55994d0e6e7adacc2c5deb50a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `null' and `null'
// Line: 10
using System;
class X
{
static int Main (string[] args)
{
int[] t = args.Length > 0 ? null : null;
return t == null ? 0 : 1;
}
}
|