blob: 91cd073fd229e2e62b1fe8b9bb7571e9c27a1042 [file] [log] [blame]
// { 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();
}