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

gcs1661.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7ed5a505f147d8afc027d5d66840a903340f866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1661: Cannot convert `lambda expression' to delegate type `C.WithOutParam' since there is a parameter mismatch
// Line: 10


class C
{
	delegate void WithOutParam (out string value);

	static void Main() 
	{
		WithOutParam o = (string l) => { return; };
    }
}