Merge pull request #4431 from vkargov/vk-leaking-points
[mono.git] / mcs / tests / gtest-047.cs
1 // Compiler options: -r:gtest-047-lib.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         public static void Main ()
14         {
15                 List<int> list = new List<int> ();
16         }
17 }