Issue error on overloaded "export"ed functions.

Issue #270.
This commit is contained in:
Matt Pharr
2012-05-25 10:28:01 -07:00
parent fd03ba7586
commit d943455e10
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
// Illegal to have "export" function with same name as previously declared function
export void foo() { }
export void foo(uniform int x) { }