[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0019-33.cs
1 // CS0019: Operator `+' cannot be applied to operands of type `string' and `method group'
2 // Line: 10
3
4 using System;
5
6 public class Test
7 {
8         public static void Main ()
9         {
10                 Console.WriteLine ("+++" + Main);
11         }
12 }