Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-112.cs
1 //
2 // This tests the use of an array indexer on value exprclasses
3 // and not only variables
4 //
5 class X {
6         static int [] g ()
7         {
8                 int [] x = new int [5];
9                 x [1] = 10;
10                 return x;
11         }
12
13         public static int Main ()
14         {
15                 if (g () [1] == 10)
16                                 return 0;
17                 return 1;
18         }
19 }