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

gcs1910.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8200cd95e9ec07d6268983e429c5b93c1b952ad (plain)
1
2
3
4
5
6
7
8
9
10
// gcs1910.cs: Argument of type `System.Type' is not applicable for the DefaultValue attribute
// Line: 7

using System.Runtime.InteropServices;

class Test {
	void f ([DefaultParameterValue (typeof (object))] object x)
	{
	}
}