blob: 3cb27a85c007df09b97363e7b721f781862df664 [file] [log] [blame]
namespace N {
template < typename T > class C : T {};
}
int main() {
N::C(); // { dg-error "6:cannot deduce template arguments" "" { target c++17 } }
// { dg-error "7:missing template arguments" "" { target c++14_down } .-1 }
}