We weren't testing this with C++, so the breakage was missed. https://github.com/mesonbuild/meson/issues/2814pull/2826/head
parent
f3c182f07d
commit
55abe16d5a
3 changed files with 23 additions and 1 deletions
@ -0,0 +1,8 @@ |
||||
#include <string> |
||||
#include <iostream> |
||||
|
||||
int main(int argc, char **argv) { |
||||
std::string* s = new std::string("Hello"); |
||||
delete s; |
||||
return 0; |
||||
} |
Loading…
Reference in new issue