* man/mono-shlib-cop.1: Add man page for mono-shlib-cop program.
[mono.git] / mcs / tests / gen-141.cs
1 using System;
2
3 class X
4 {
5         static void Main ()
6         {
7                 int?[] bvals = new int? [] { null, 3, 4 };
8                 foreach (int? x in bvals) 
9                         Console.WriteLine (x);
10         }
11 }