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