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

cs0621.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 850e0f29f4c510982a1552e3407c3d604c26e741 (plain)
1
2
3
4
5
// cs0621.cs: `X.method()': virtual or abstract members cannot be private
// Line:
class X {
	virtual void method () {}
}