summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0426-2.cs
blob: 2d7d66a92e4e7c1f6b60aaa65b80eacd3f6c5fa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0426: The nested type `M' does not exist in the type `N'
// Line: 6

class A
{
	class B : N.M
	{
	}
}

class N
{
	public const string S = "1";
}