1 // PR c++/51225
2 // { dg-do compile { target c++11 } }
3 
4 template<int> struct A {};
5 
foo()6 template<typename> void foo()
7 {
8   A<int(x)> a; // { dg-error "not declared|could not convert" }
9 }
10 
11 template<typename> struct bar
12 {
13   static constexpr A<1> b = A<1>(x); // { dg-error "not declared" }
14 };
15