remove debug writelines
[mcs.git] / errors / gcs1946.cs
blobf53130fad09c65403b2b7e0393de73b7797a7000
1 // CS1946: An anonymous method cannot be converted to an expression tree
2 // Line: 11
4 using System;
5 using System.Linq.Expressions;
7 class C
9 delegate string D ();
11 public static void Main ()
13 Expression<D> e = delegate () { return "a"; };