rt_gccstream/gcc/testsuite/g++.dg/torture/pr33572.C

18 lines
258 B
C

// { dg-do run }
#include <vector>
#include <memory>
struct Foo { virtual void f() {} };
int main(int argc, char**)
{
std::auto_ptr<Foo> foo;
if (argc >= 0) {
foo.reset(new Foo());
} else {
std::vector<int> v;
}
Foo* p = foo.release();
p->f();
}