1// PR c++/30863
2
3template <typename T>
4struct s {};
5
6void f() {
7  unsigned s<int> x; // { dg-error "invalid" }
8}
9