Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-138.cs
1 using System;
2
3 class X
4 {
5         public static void Main ()
6         {
7                 int? a = 4;
8                 long b = 5;
9                 long? c = a * b;
10                 Console.WriteLine (c);
11         }
12 }