summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0122-20.cs
blob: 26bc2a4c5164c497f98fec5cde5653b9b4e4684a (plain)
1
2
3
4
5
6
7
8
9
// CS0122: `A.B' is inaccessible due to its protection level
// Line: 4

using C = A.B;

class A
{
	class B {}
}