a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
26 lines
254 B
C#
26 lines
254 B
C#
using System;
|
|
|
|
public delegate C D (int i);
|
|
|
|
public class C
|
|
{
|
|
private readonly D field = delegate {
|
|
int x = 0;
|
|
return null;
|
|
};
|
|
|
|
public C ()
|
|
{
|
|
}
|
|
|
|
public C (D onMissing)
|
|
{
|
|
}
|
|
|
|
public static int Main ()
|
|
{
|
|
new C ().field (3);
|
|
return 0;
|
|
}
|
|
}
|