Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0837.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
		}
	}
}