6 lines
143 B
Plaintext
6 lines
143 B
Plaintext
// Illegal to have "export" function with same name as previously declared function
|
|
|
|
export void foo() { }
|
|
|
|
export void foo(uniform int x) { }
|