Updated with review feedback.
[mono.git] / mcs / errors / cs1979.cs
1 // CS1979: Query expressions with a source or join sequence of type `dynamic' are not allowed
2 // Line: 11
3
4 using System.Linq;
5
6 class C
7 {
8         public static void Main ()
9         {
10                 dynamic d = null;
11                 var r = from x in d select x;
12         }
13 }