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