Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / test-431.cs
1 using foo = Foo;
2
3 namespace Foo {
4         class A { }
5 }
6
7 class X {
8         static void Main ()
9         {
10                 foo::A a = new Foo.A ();
11                 System.Console.WriteLine (a.GetType ());
12         }
13 }