Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / test-428.cs
1 using globalA = A;
2
3 class A { }
4
5 class X {
6         class A { }
7         public static void Main ()
8         {
9                 globalA a = new global::A ();
10                 System.Console.WriteLine (a.GetType ());
11         }
12 }