blob: e38b222748724e42c9cf430997458253c45fe7d8 [file] [log] [blame]
// Build don't link:
struct B {
int i;
};
struct D: public B {
int i;
};
template <class T>
struct D2 : public D {
void f() { i = 3; }
};