summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0246-35.cs
blob: 79f1c785c8ab1644c70c8edfa933813579a3748c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// CS0246: The type or namespace name `B' could not be found. Are you missing an assembly reference?
// Line: 21

using static A;

class A : B
{
}

class P
{
	public class N<T>
	{
	}
}

class Test
{
	public static void Main ()
	{
		var n = default (N<int>);
	}
}