Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1943.cs
1 // CS1943: An expression type is incorrect in a subsequent `from' clause in a query expression with source type `string'
2 // Line: 11
3
4 using System.Linq;
5
6 class Test
7 {
8         static void Main ()
9         {
10                 var e = from a in "abcd"
11                                 from b in new Test ()
12                                 select b;
13         }
14 }