2005-06-13 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / tests / gen-47-exe.cs
1 // Compiler options: -r:gen-47-dll.dll
2
3 // Important test: verify our namespace lookup rules
4 //
5 // There's a generic and a non-generic `List' type in two
6 // different namespaces: make sure we pick the correct one.
7
8 using Foo;
9 using Bar;
10
11 class X
12 {
13         static void Main ()
14         {
15                 List<int> list = new List<int> ();
16         }
17 }