eol
[mcs.git] / tests / test-620.cs
blob61f6eea2bce2f7ad348c3e59320012dcf4c945aa
1 //
2 // fixed
3 //
4 class X {
6 static void A (ref int a)
8 a++;
11 // Int32&
12 static void B (ref int a)
14 // Int32&&
15 A (ref a);
18 static int Main ()
20 int a = 10;
22 B (ref a);
24 if (a == 11)
25 return 0;
26 else
27 return 1;