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

gcs1909.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16081307a75910a566d20e79931cbb8e299e8177 (plain)
1
2
3
4
5
6
7
8
9
10
// gcs1909.cs: The DefaultValue attribute is not applicable on parameters of type `int[]'
// Line: 7

using System.Runtime.InteropServices;

class Test {
	void f ([DefaultParameterValue (new int[0])] int[] x)
	{
	}
}