6 lines
102 B
Plaintext
6 lines
102 B
Plaintext
// Illegal to dereference void pointer type
|
|
|
|
int foo(void * uniform ptr) {
|
|
print("%", ptr[0]);
|
|
}
|