2005-06-13 Miguel de Icaza <miguel@novell.com>
[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 }