]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - tests/typedefs.qc
Unused globals even if they have an initial value should produce unused diagnostic
[xonotic/gmqcc.git] / tests / typedefs.qc
index 79143fd80bfe54f1767860503cf18c160cb090c8..a51844413803533e7213b68d67e6dafd97c9ee44 100644 (file)
@@ -1,5 +1,5 @@
-typedef void(string, ...) ptype;
-typedef string(float) funcsf;
+typedef void(...)       ptype;
+typedef string(float a) funcsf;
 
 ptype print = #1;
 funcsf ftos = #2;