blob: bb7c1dced714a15c52951b983a1ef73072c12704 [file] [log] [blame]
//Build don't link:
//Inheritance from templates which are namespace members
namespace foo {
template <class T>
struct x {
x(){}
};
}
class y : public foo::x<int> {};
y r;