eol
[mcs.git] / tests / test-743.cs
blob9300166b049f0247858ce5201faafcd573d57b91
1 // Compiler options: -r:test-743-lib.dll
3 using System;
5 public class C : A
7 public static void Main ()
9 new C ().Test ();
12 void Test ()
14 var a = new C ();
15 Console.WriteLine (a.Prop);
16 a [5] = "2";