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: 87bc932088cc4eeb7b6e4181dab47ddf7d75c5e2 (plain)
1
2
3
4
5
// cs0621.cs: X.method virtual or abstract methods can not be private
// Line:
class X {
	virtual void method () {}
}