[xbuild] Vbc task - make error column check a little non-specific.
[mono.git] / mcs / tests / gtest-502.cs
1 using System;
2 using TestAlias = A.N<double>;
3
4 class C<T>
5 {
6         public class Foo<U>
7         {
8         }
9
10         public class Simple
11         {
12         }
13
14         static Type foo = typeof (Foo<>);
15         static Type simple = typeof (Simple);
16 }
17
18 class A
19 {
20         public class N<T>
21         {
22         }
23 }
24
25 class M
26 {
27         public static int Main ()
28         {
29                 new C<int> ();
30                 
31                 if (typeof (TestAlias).ToString () != "A+N`1[System.Double]")
32                         return 1;
33                 
34                 return 0;
35         }
36 }
37