Files
ispc/tests_errors/new-delete-1.ispc
2012-01-27 14:47:06 -08:00

6 lines
74 B
Plaintext

// Illegal to delete non-pointer type
void func(int a) {
delete a;
}