1 // PR c++/59955
2 
3 template< int xyz >
4 struct wovo {
5 
6    template< int n >
uswovo7    void us(){}
8 
9    template< int n >
10    struct us< n > {};  // { dg-error "template|conflicts" }
11 };
12