]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - tests/rassign.qc
Merge branch 'cooking'
[xonotic/gmqcc.git] / tests / rassign.qc
index 69ec31cf9017ff0a18c361bddbbae4c2170fefb8..5c72e6f52fa3df9175ccf6fa52b719e3b249a367 100644 (file)
@@ -15,16 +15,16 @@ vector f_vector() {
 }
 
 string f_string() {
+#ifndef FAIL_TEST
     return = "hello";
     return = "world";
+#endif
     return;
 }
 
 float factorial(float n) {
     if (n == 0) return = 1;
     else        return = n * factorial(n - 1);
-
-    return;
 }
 
 void main() {