// 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 { static Main () : void { def list_ = List (); // we prefer non-genric overload assert (!list_.GetType ().IsGenericType); (); } } // REFERENCE: gtest-047-lib.dll /* BEGIN-OUTPUT END-OUTPUT */