Merge pull request #496 from nicolas-raoul/unit-test-for-issue2907
[mono.git] / mcs / tests / test-432.cs
1 using foo = Foo;
2
3 namespace Foo {
4         class A { }
5 }
6
7 class X {
8         public static void Main ()
9         {
10                 Foo.A a = new foo::A ();
11                 System.Console.WriteLine (a.GetType ());
12         }
13 }