* man/mono-shlib-cop.1: Add man page for mono-shlib-cop program.
[mono.git] / mcs / tests / gen-138.cs
1 using System;
2
3 class X
4 {
5         static void Main ()
6         {
7                 int? a = 4;
8                 long b = 5;
9                 long? c = a * b;
10                 Console.WriteLine (c);
11         }
12 }