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: 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;
		}
	}
}