[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-autoproperty-06.cs
blobfc3cb244a725b6d39c36b900ba9d0bd5ebc00b42
1 class A { }
2 class B { }
4 interface I<T>
6 T Prop { get; set; }
9 class C : I<A>, I<B>
11 B I<B>.Prop { get; set; }
12 A I<A>.Prop { get; set; }
15 class Program
17 public static void Main (string[] args)
19 C c = new C ();