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

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