[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / test-926.cs
blobdfb7b3bd8fdc0b54b0d8492264454e063ce4f446
1 class Program
3 public static void Main ()
5 System.Console.WriteLine("Hi");
9 public class MyClass
11 protected internal virtual int this[int i]
13 protected get
15 return 2;
17 set
23 public class Derived : MyClass
25 protected internal override int this[int i]
27 protected get
29 return 4;