Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / gtest-138.cs
blobc89a291ae69e101e389c32ade00b6a594c1d6c6d
1 using System;
3 class X
5 public static void Main ()
7 int? a = 4;
8 long b = 5;
9 long? c = a * b;
10 Console.WriteLine (c);