]> de.git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/pp_va_args.qc
tests for __VA_ARGS__
[xonotic/gmqcc.git] / tests / pp_va_args.qc
1 void print(...) = #1;
2
3 #define NOPARENS(...) __VA_ARGS__
4 #define callem(func, args) func(NOPARENS args)
5
6 void main() {
7     print(NOPARENS("hello ", "world\n"));
8     callem(print, ("Yay", ", there\n"));
9 }