a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
28 lines
250 B
C#
28 lines
250 B
C#
using System;
|
|
|
|
class A
|
|
{
|
|
public delegate int D ();
|
|
}
|
|
|
|
class B : A
|
|
{
|
|
new delegate void D ();
|
|
}
|
|
|
|
class C
|
|
{
|
|
static int Foo ()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
public static int Main ()
|
|
{
|
|
A.D d = new B.D (Foo);
|
|
if (d () != 1)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
} |