Merge pull request #4935 from lambdageek/dev-handles-may
[mono.git] / mcs / tests / gtest-autoproperty-06.cs
1 class A { }
2 class B { }
3
4 interface I<T>
5 {
6         T Prop { get; set; }
7 }
8
9 class C : I<A>, I<B>
10 {
11         B I<B>.Prop { get; set; }
12         A I<A>.Prop { get; set; }
13 }
14
15 class Program
16 {
17         public static void Main (string[] args)
18         {
19                 C c = new C ();
20         }
21 }