codeowners update
[mono.git] / mcs / tests / test-434.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 }