[appletls] Trust SecTrustResult.Proceed as well. Fixes #58411.
[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 }