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

gcs0060.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f933e62db5bf40a7a789fb96c685f8edb773bcc (plain)
1
2
3
4
5
6
7
8
9
10
// CS0060: Inconsistent accessibility: base class `Foo<Bar.Baz>' is less accessible than class `Bar'
// Line: 7

public class Foo<K> {
}

public class Bar : Foo<Bar.Baz> {
	private class Baz {
	}
}