[runtime] Accomplish BITCODE build symbol sharing with only make (#3329)
[mono-project.git] / mono / tests / largeexp2.cs
blob4df201deb1ae624bdd1da228720f800ebe066986
1 using System;
3 class Test {
5 private long res = 0;
7 void test ()
9 long a = 1, b = 2;
11 res = 2 * a + 3 * b;
14 static int Main ()
16 Test x = new Test ();
18 x.test ();
20 Console.WriteLine (x.res);
22 if (x.res != 8)
23 return 1;
25 return 0;