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

cs0619-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e947519a541acd540ca55327381bf074b1e1f2c3 (plain)
1
2
3
4
5
6
7
8
// cs0619.cs: 'ObsoleteStruct ' is obsolete: 'Obsolete struct'
// Line: 7
// Compiler options: -reference:CS0619-8-lib.dll

interface I
{
	int Foo (int arg1, ObsoleteStruct arg2);
}