2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / dcs1979.cs
blob2a290e81281fe583e2d6f28d8648b698ec679141
1 // CS1977: Query expression with a source or join sequence of type `dynamic' is not allowed
2 // Line: 11
4 using System.Linq;
6 class C
8 public static void Main ()
10 dynamic d = null;
11 var r = from x in d select x;