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

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

public class B: ObsoleteA
{
	public B (): base () {}
}