**** Merged from MCS ****
[mono-project.git] / mcs / tests / gen-47-exe.cs
blobfe2a59e629b949ef38208ae4b9b4642375aba8ec
1 // Compiler options: -r:gen-47-dll.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> ();