Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-936.cs
1 // Compiler options: -r:test-936-lib.dll
2
3 class X
4 {
5         public static void Main ()
6         {
7                 TypeWithIndexer a = new TypeWithIndexer ();
8                 var x = a[0];
9                 a[0] = x;
10         }
11 }