[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0246-35.cs
blob79f1c785c8ab1644c70c8edfa933813579a3748c
1 // CS0246: The type or namespace name `B' could not be found. Are you missing an assembly reference?
2 // Line: 21
4 using static A;
6 class A : B
10 class P
12 public class N<T>
17 class Test
19 public static void Main ()
21 var n = default (N<int>);