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

10 lines
79 B
C++
Raw Normal View History

int main()
{
bool b;
if (b) {
return 1;
}
return 0;
}