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: ba5e3ec97b1ff9a0257ace9eb28f514b8e7ee845 (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:1

class Base {
	public void F () {}
}

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