blob: b7291df7edc8e2541e6f4668969c74ee3d660f8d [file] [log] [blame]
// PR c++/59955
template< int xyz >
struct wovo {
template< int n >
void us(){}
template< int n >
struct us< n > {}; // { dg-error "template|conflicts" }
};