Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-9.cs
1 class X {
2         public static int Main (string [] args)
3         {
4                 decimal a, b, c, d;
5
6                 a = 0;
7                 b = 1;
8                 c = d = 3;
9
10                 if (b + b + b != c)
11                         return 1;
12
13                 if (a != (b - 1))
14                         return 2;
15
16                 if (c != d)
17                         return 3;
18
19                 if (!(c == d))
20                         return 4;
21                 
22                 return 0;
23         }
24 }