summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1976.cs
blob: e03e2f36fc728bc56b6eb761d2eab4961e94e7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1976: The method group `Main' cannot be used as an argument of dynamic operation. Consider using parentheses to invoke the method
// Line: 9

class C
{
	public static void Main ()
	{
		dynamic d = null;
		d (Main);
	}
}