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

cs0122-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5802a342b38258bdb36d33d62542b514bb678b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0122: `Foo.Bar' is inaccessible due to its protection level

public class Test
{
	public class Foo
	{
		private class Bar {}
	}
	
	private class Bar : Foo.Bar
	{
	}

	public static void Main () {}
}