6 lines
59 B
C++
6 lines
59 B
C++
void func() {
|
|
int* f = 0;
|
|
if (f) {
|
|
delete f;
|
|
}
|
|
}
|