Merge branch 'alexischr/nursery-canaries-managed-alloc'
[mono.git] / mcs / errors / cs0019-36.cs
1 // CS0019: Operator `+' cannot be applied to operands of type `method group' 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 + Main);
11         }
12 }