a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
21 lines
170 B
C#
21 lines
170 B
C#
interface I
|
|
{
|
|
int P { get; }
|
|
}
|
|
|
|
class B : I
|
|
{
|
|
int I.P { get { return 1; } }
|
|
}
|
|
|
|
class C : B
|
|
{
|
|
public int get_P ()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
}
|
|
} |