]> de.git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/predef_func.qc
Merge pull request #177 from xonotic/terencehill/warning_removal
[xonotic/gmqcc.git] / tests / predef_func.qc
1 void main() {
2 #ifdef SIMPLE
3     print(__FUNC__, "\n");
4 #elifdef CONCATENATED
5     print(__FUNC__ "\n");
6 #else
7 #   error this is wrong
8 #endif
9 }