blob: e226559429d57021ec925a0f6f25ec6857fd0d3e [file] [log] [blame]
// Build don't link:
// Origin: Leon Bottou <leonb@research.att.com>
class AA { protected:
template <class T> struct BB { T x; BB(const T &x) : x(x) { }; };
template <class T> struct CC : public BB<T> { CC(const T &x) : BB<T>(x) { };
};
};