2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1943.cs
blob92fd59146084f852e55fd935423087476fe7b512
1 // CS1943: An expression type is incorrect in a subsequent `from' clause in a query expression with source type `string'
2 // Line: 11
4 using System.Linq;
6 class Test
8 static void Main ()
10 var e = from a in "abcd"
11 from b in new Test ()
12 select b;