6 lines
74 B
Plaintext
6 lines
74 B
Plaintext
// Illegal to delete non-pointer type
|
|
|
|
void func(int a) {
|
|
delete a;
|
|
}
|