[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0119-6.cs
1 // CS0119: Expression denotes a `variable', where a `type' or `method group' was expected
2 // Line: 10
3
4 delegate void D ();
5
6 class C
7 {
8     public void Foo (int i)
9     {
10         D d = new D (i);
11     }
12 }