Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0019-67.cs
1 // CS0019: Operator `+=' cannot be applied to operands of type `dynamic' and `anonymous method'
2 // Line: 9
3
4 class MainClass
5 {
6         public static void Main ()
7         {
8                 dynamic d = null;
9                 d += delegate {};
10         }
11 }