Files
ispc/tests_errors/deref-4.ispc
2012-02-07 08:36:56 -08:00

7 lines
115 B
Plaintext

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