[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-047.cs
blob9a251b28daef8f10918a78519b1cb06414f7a41a
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 public static void Main ()
15 List<int> list = new List<int> ();