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: 1f9d91a4fb3b46a11f05508ee587d68ddf11a27f (plain)
1
2
3
4
5
// CS0621: `X.method()': virtual or abstract members cannot be private
// Line:
class X {
	virtual void method () {}
}