cleol
[mcs.git] / tests / test-9.cs
blob4fd35e3714bf8432b36d548263f25a5517918e1a
1 class X {
2 static public int Main (string [] args)
4 decimal a, b, c, d;
6 a = 0;
7 b = 1;
8 c = d = 3;
10 if (b + b + b != c)
11 return 1;
13 if (a != (b - 1))
14 return 2;
16 if (c != d)
17 return 3;
19 if (!(c == d))
20 return 4;
22 return 0;