New test.
[mono.git] / mcs / tests / test-298.cs
1 using System;
2
3 class X
4 {
5         static int Main (string[] args)
6         {
7                 int[] t = args.Length > 0 ? null : null;
8                 return t == null ? 0 : 1;
9         }
10 }