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

cs0113.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc7dcb52affeee0a6b9516fe2dc7f3d1056e894e (plain)
1
2
3
4
5
6
// CS0113: A member `X.Y()' marked as override cannot be marked as new or virtual
// Line: 8

class X {
	public virtual override void Y () {}
}