2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-047.cs
blob71af6d5f2ad34db4c4c859c1b86d73080255fd52
1 // Compiler options: -r:gtest-047-lib.dll
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.
8 using Foo;
9 using Bar;
11 class X
13 static void Main ()
15 List<int> list = new List<int> ();