New test.
[mono.git] / mcs / tests / test-743-lib.cs
1 // Compiler options: -t:library
2
3 public class A
4 {
5         public int Prop {
6                 get {
7                         return 1;
8                 }
9                 private set { }
10         }
11         
12         protected internal string this [int i] {
13                 private get {
14                         return null;
15                 }
16                 set { }
17         }
18 }