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

cs1547-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 874a0a30c46fd1e230e1ccecb9d9c26e01690c5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1547: Keyword `void' cannot be used in this context
// Line: 6

class C
{
	int Foo ()
	{
		foreach (void v in this)
		{
		}
	}
}