From 7fce7e53ffb5fa9527efb4d148b25753d8ae2190 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 12 Jul 2001 23:11:40 +0000 Subject: [PATCH] more test (need to find a way to do automated tests, I think) --- tools/qwaq/main.qc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tools/qwaq/main.qc b/tools/qwaq/main.qc index a6329ee43..7111b44cb 100644 --- a/tools/qwaq/main.qc +++ b/tools/qwaq/main.qc @@ -119,3 +119,12 @@ string(entity thething) GetEnemyName = return "unknown stuff"; }; +void () assign = +{ + local float foo; + local float bar; + + foo = bar; + foo = bar = 1; + foo = bar = bar + 1; +};