1 // CS8046: An expression tree cannot contain a declaration expression
3 // Compiler options: -langversion:experimental
6 using System
.Linq
.Expressions
;
12 Expression
<Func
<bool>> e
= () => Out (out int x
);
15 static bool Out (out int value)