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

cs0060.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 832b2310501397b59bc042525e0761c36c3cba44 (plain)
1
2
3
4
5
6
7
// cs0060.cs: Inconsistent accessibility: base class `X' is less accessible than class `Y'
// Line: 6
class X {
}

public class Y : X {
}