Files
ispc/tests_errors/export-multiple-name.ispc

6 lines
153 B
Plaintext

// Illegal to provide "export" qualifier for functions with the same name but different types
export void foo() { }
export void foo(uniform int x) { }