2004-05-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / tests / gen-47-exe.cs
1 // Important test: verify our namespace lookup rules
2 //
3 // There's a generic and a non-generic `List' type in two
4 // different namespaces: make sure we pick the correct one.
5
6 using Foo;
7 using Bar;
8
9 class X
10 {
11         static void Main ()
12         {
13                 List<int> list = new List<int> ();
14         }
15 }