2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0119-6.cs
blob3ff883f952aed6d9195456a51aa65f88e9705d1d
1 // CS0119: Expression denotes a `variable', where a `type' or `method group' was expected
2 // Line: 10
4 delegate void D ();
6 class C
8 public void Foo (int i)
10 D d = new D (i);