1 // PR c++/53473
2 // { dg-do compile { target c++11 } }
3 
4 template<typename T> struct A
5 {
fooA6   static constexpr T foo() noexcept { return 0; }
7 };
8 
foo()9 template<> constexpr int A<int>::foo() noexcept { return 0; }
10