blob: 73d49c4837b91b096b329ef2d5c3ae9ad7839ca1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS0019: Operator `+=' cannot be applied to operands of type `dynamic' and `anonymous method'
// Line: 9
class MainClass
{
public static void Main ()
{
dynamic d = null;
d += delegate {};
}
}
|