[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs1660-4.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 }