blob: 2ccf17b85c5686430736a798aaa3b158739ea0d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0019: Operator `+' cannot be applied to operands of type `method group' and `method group'
// Line: 10
using System;
public class Test
{
public static void Main ()
{
Console.WriteLine (Main + Main);
}
}
|