Files
qt-creator/tests/valgrind/memcheck/testapps/leak4/main.cpp

18 lines
150 B
C++
Raw Normal View History

#include <qglobal.h>
struct Foo
{
Foo()
: num(new qint64)
{}
qint64 *num;
};
int main()
{
Foo *f = new Foo;
return 0;
}