blob: 605ece3529f347aa89bda72dedabdfb78243fbdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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";
}
}
|