summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0119-7.cs
blob: 4fde3b7df2fbbe16c0dc5a1fafecd0250a938e90 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0119: Expression denotes a `method group', where a `variable', `value' or `type' was expected
// Line: 8

class C
{
	static void Main ()
	{
		throw Main;
	}
}