]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/predef_func.qc
this can be a move
[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 }