Files
codeql/cpp/ql/test/library-tests/syntax-zoo/defconstructornewexpr.cpp
2019-08-06 14:10:25 +02:00

6 lines
44 B
C++

class C { };
void f() {
new C;
return;
}