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

6 lines
144 B
Plaintext

// Can't convert from varying type "int32 *" to uniform type "int32 * uniform" for return
int * uniform func(int x) {
return new int[x];
}