* man/mono-shlib-cop.1: Add man page for mono-shlib-cop program.
[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 }