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

gcs1676.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce31be0e10c09f6f4b7893cb96e49b5b17aaa390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1676: Parameter `1' must be declared with the `out' keyword
// Line: 10

class C
{
	delegate int D (out int i);

	public static void Main ()
	{
		 D d = a => 1;
	}
}