[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0019-67.cs
blob73d49c4837b91b096b329ef2d5c3ae9ad7839ca1
1 // CS0019: Operator `+=' cannot be applied to operands of type `dynamic' and `anonymous method'
2 // Line: 9
4 class MainClass
6 public static void Main ()
8 dynamic d = null;
9 d += delegate {};