summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0019-66.cs
blob: 09929b1e4e0b21b968ad12b71cd69ca0bbd8998c (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0019: Operator `==' cannot be applied to operands of type `dynamic' and `method group'
// Line: 9

class C
{
	static void Main ()
	{
		dynamic x = null;
		var y = x == Main;
	}
}