Merge branch 'master' of github.com:mono/mono
[mono.git] / mcs / errors / dcs1660.cs
1 // CS1660: Cannot convert `lambda expression' to non-delegate type `dynamic'
2 // Line: 8
3
4 public class C
5 {
6         public static void Main ()
7         {
8                 dynamic d = () => 1;
9         }
10 }