*** empty log message ***
[mono.git] / mcs / tests / test-8.cs
1 class X {
2         static public int Main (string [] args)
3         {
4                 int a, b, c, d;
5
6                 a = b = 10;
7                 c = d = 14;
8
9                 if ((a + b) != 20)
10                         return 1;
11                 if ((a + d) != 24)
12                         return 2;
13                 if ((c + d) != 28)
14                         return 3;
15                 if ((b + c) != 24)
16                         return 4;
17
18                 return 0;
19         }
20 }