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