[w32file] Move MonoIO.Find{First,Next,Close} to managed
[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                 public static void Main ()
14                 {
15                         M.Foo<int> foo;
16                 }
17         }
18 }