[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0119-2.cs
blobe3fc7da23d56e8bd881f1f4fd7eafe4f32dfb2d1
1 // CS0119: Expression denotes a `type', where a `variable', `value' or `method group' was expected
2 // Line: 14
4 using System;
6 namespace Test
8 public delegate void SomeDel (Action a);
10 public class TestClass
12 public void TestMethod ()
14 SomeDel (() => { });