1 // PR c++/63194
2 // { dg-do compile { target c++11 } }
3 
4 template <int>
5 class A {
6  public:
7   A() noexcept(noexcept(0)) = default;
8 };
9 class B {
10   A<0> m_points;
11 };
fn1(A<0>,A<0>)12 void fn1(A<0>, A<0>) { B(); }
13