blob: e3fc7da23d56e8bd881f1f4fd7eafe4f32dfb2d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// CS0119: Expression denotes a `type', where a `variable', `value' or `method group' was expected
// Line: 14
using System;
namespace Test
{
public delegate void SomeDel (Action a);
public class TestClass
{
public void TestMethod ()
{
SomeDel (() => { });
}
}
}
|