2005-06-13 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / tests / gen-68.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 }