blob: c7c21237059a5c73d642267f2e69300656b1e3e6 [file] [log] [blame]
#include <string>
#include <iostream>
int main(int argc, char **argv) {
std::string* s = new std::string("Hello");
delete s;
return 0;
}