Files
ispc/tests_errors/deref-4.ispc

7 lines
102 B
Plaintext

// Illegal to dereference non-pointer type "float"
float func(float a) {
*a = 0;
return 0;
}