Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0246-35.cs
1 // CS0246: The type or namespace name `B' could not be found. Are you missing an assembly reference?
2 // Line: 21
3
4 using static A;
5
6 class A : B
7 {
8 }
9
10 class P
11 {
12         public class N<T>
13         {
14         }
15 }
16
17 class Test
18 {
19         public static void Main ()
20         {
21                 var n = default (N<int>);
22         }
23 }