Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0854.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29ee3bc9df15d6b6f0756bf5dc96f85f5a9e19de (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
{
	static void Optional (int i, string s = "value")
	{
	}
	
	public static void Main ()
	{
		Expression<Action> e = () => Optional (1);
	}
}