2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0834.cs
blob7ba58a33fb39c84ef777aa5222b05f5a6caf2ecb
1 // CS0834: A lambda expression with statement body cannot be converted to an expresion tree
2 // Line: 12
4 using System.Linq.Expressions;
6 class C
8 delegate bool D ();
10 public void Foo ()
12 Expression<D> e = () => { return true; };