blob: 17a19e4028911f220b02a6edae68b312c53713a9 [file] [log] [blame]
// PR c++/105803
// { dg-do compile }
// { dg-additional-options "-fchecking=2" }
namespace std {
template <typename> class shared_ptr {};
}
struct S {};
template <int> void build_matrices() {
std::shared_ptr<S>(new S);
}