[appletls] Trust SecTrustResult.Proceed as well. Fixes #58411.
[mono.git] / mcs / tests / test-743.cs
1 // Compiler options: -r:test-743-lib.dll
2
3 using System;
4
5 public class C : A
6 {
7         public static void Main ()
8         {
9                 new C ().Test ();
10         }
11         
12         void Test ()
13         {
14                 var a = new C ();
15                 Console.WriteLine (a.Prop);
16                 a [5] = "2";
17         }
18 }