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

gcs1943.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92fd59146084f852e55fd935423087476fe7b512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1943: An expression type is incorrect in a subsequent `from' clause in a query expression with source type `string'
// Line: 11

using System.Linq;

class Test
{
	static void Main ()
	{
		var e = from a in "abcd"
				from b in new Test ()
				select b;
	}
}