summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-047.cs
blob: 9a251b28daef8f10918a78519b1cb06414f7a41a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Compiler options: -r:gtest-047-lib.dll

// Important test: verify our namespace lookup rules
//
// There's a generic and a non-generic `List' type in two
// different namespaces: make sure we pick the correct one.

using Foo;
using Bar;

class X
{
	public static void Main ()
	{
		List<int> list = new List<int> ();
	}
}