blob: 0be64747e53ceaa2fa68b4f2c21f842b5ad7a1b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// CS0854: An expression tree cannot contain an invocation which uses optional parameter
// Line: 15
using System;
using System.Linq.Expressions;
class M
{
public M (string s = "value")
{
}
public static void Main ()
{
Expression<Action> e = () => new M ();
}
}
|