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

6 lines
68 B
Plaintext

// Syntax error
int * func(int a) {
return const new int[a];
}