blob: 8e26057922e396aceb94da58da0923c0c2729254 [file] [log] [blame]
// Build don't link:
// Special g++ Options:
template <class T, bool B>
struct R {
struct X {};
};
template <class T, bool B = false>
struct S : public R <T, B> {
};
template <class T> void f()
{
S<T>::X();
}
template void f<int>();