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

cs0122-12.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b82d9a5c483bd7cae8de5a31cdc43da3d49100a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0122.cs: 'Base.Base(string)' is inaccessible due to its protection level
// Line: 12
class Base {
	Base (string x)
	{
	}
}

// Notice how there is no invocation to "base (something)"

class Derived : Base {
	Derived ()
	{
	}
}