Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1942.cs
1 // CS1942: An expression type in `select' clause is incorrect. Type inference failed in the call to `Select'
2 // Line: 12
3
4 using System;
5 using System.Linq;
6
7 class C
8 {
9         public static void Main ()
10         {
11                 var e = from values in "abcd"
12                         select null;
13         }
14 }