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

cs0108.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac1df1a1d1da1b5aac3f7721aa629811968349f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0108.cs: The new keyword is required on MEMBER because it hides MEMBER2
// Line:
// Compiler options: -warnaserror -warn:2

class Base {
	public void F () {}
}

class Derived : Base {
	void F () {}
}