Files
ispc/tests_errors/export-multiple-name.ispc
2012-05-25 10:35:34 -07:00

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) { }