blob: 3ff883f952aed6d9195456a51aa65f88e9705d1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0119: Expression denotes a `variable', where a `type' or `method group' was expected
// Line: 10
delegate void D ();
class C
{
public void Foo (int i)
{
D d = new D (i);
}
}
|