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

cs1932.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1952868810664fc25323d65c0fff5da30ad21ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS1932: A range variable `ii' cannot be initialized with `void'
// Line: 13


using System;
using System.Linq;

class C
{
	public void Foo (int i)
	{
		var e = from v in "a"
			let ii = Foo (2)
			select v;
	}
}