"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1979.cs
blobc093a3d9f29b0fee9aa2791b81df8744030c9c43
1 // CS1979: Query expressions with a source or join sequence of type `dynamic' are 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;