* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / tests / gtest-068.cs
1 namespace Martin
2 {
3         public class Foo<T>
4         { }
5 }
6
7 namespace Baulig
8 {
9         using M = Martin;
10
11         class X
12         {
13                 static void Main ()
14                 {
15                         M.Foo<int> foo;
16                 }
17         }
18 }