summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0837.cs
blob: 7c56fd1addd7876801dc13bdd621c41075eedbde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0837: The `is' operator cannot be applied to a lambda expression or anonymous method
// Line: 8

class X
{
	static void Main ()
	{
		if (delegate {} is int) {
			return;
		}
	}
}