Files
ispc/tests_errors/new-delete-4.ispc

8 lines
168 B
Plaintext

// Type conversion from "varying struct P" to "varying unsigned int32" for item count is not possible
struct P { int x; };
int * func(P p) {
return new int[p];
}