]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - tests/ppcat.qc
Fix
[xonotic/gmqcc.git] / tests / ppcat.qc
index 2056632054591fb7c86c781da3d38f07e3e04488..ca92060d2005d71570aac8827eab4713296a9e68 100644 (file)
@@ -1,2 +1,13 @@
 #define CAT(X, Y) X##Y
 CAT(hello, world)
+
+#define REDIR(X, Y) CAT(X, Y)
+REDIR(CAT(hello, world), CAT(world, hello))
+
+#define SCONS(X, ...) REDIR(X, __VA_ARGS__)
+SCONS(hello, world)
+
+#define FOO(X) X##X
+#define BAR(X) FOO(X)##FOO(X)
+
+REDIR(BAR(hello), BAR(world))