14 lines
251 B
C#
Raw Normal View History

// CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
// Line: 10
class TestClass
{
delegate void test_delegate (int arg);
public TestClass ()
{
test_delegate D = (b) => "a";
}
}