Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mono / tests / largeexp2.cs
1 using System;
2
3 class Test {
4         
5         private long res = 0;
6
7         void test ()
8         {
9                 long a = 1, b = 2;
10
11                 res = 2 * a + 3 * b;
12         }
13         
14         static int Main ()
15         {
16                 Test x = new Test ();
17
18                 x.test ();
19
20                 Console.WriteLine (x.res);
21
22                 if (x.res != 8)
23                         return 1;
24                 
25                 return 0;
26         }
27 }