* ecore.cs (Expression.Error_ValueCannotBeConverted): Add special
[mono.git] / mcs / errors / gcs1660.cs
1 // CS1660: Cannot convert `lambda expression' to type `object' because it is not a delegate type
2 // Line: 10
3 // Compiler options: -langversion:linq
4
5 using System;
6
7 class X {
8         static void Main ()
9         {
10                 object o = () => true;
11         }
12 }