2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1942.cs
blobe6cffda8210b1a718f58e352f4c41cf02bd36974
1 // CS1942: An expression type in `select' clause is incorrect. Type inference failed in the call to `Select'
2 // Line: 12
4 using System;
5 using System.Linq;
7 class C
9 public static void Main ()
11 var e = from values in "abcd"
12 select null;