a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
22 lines
230 B
C#
22 lines
230 B
C#
class A { }
|
|
class B { }
|
|
|
|
interface I<T>
|
|
{
|
|
T Prop { get; set; }
|
|
}
|
|
|
|
class C : I<A>, I<B>
|
|
{
|
|
B I<B>.Prop { get; set; }
|
|
A I<A>.Prop { get; set; }
|
|
}
|
|
|
|
class Program
|
|
{
|
|
public static void Main (string[] args)
|
|
{
|
|
C c = new C ();
|
|
}
|
|
}
|