// PR c++/47544 // { dg-do compile { target c++11 } } // { dg-final { scan-assembler "_ZN1sIiEC2Ev" } } // { dg-final { scan-assembler-not "_ZN1sIiED2Ev" } } template struct s { s(); ~s() = default; }; extern template struct s; template s::s() = default; template struct s; s a;