more test (need to find a way to do automated tests, I think)

This commit is contained in:
Bill Currie 2001-07-12 23:11:40 +00:00
parent 8bbef35197
commit 7fce7e53ff

View file

@ -119,3 +119,12 @@ string(entity thething) GetEnemyName =
return "unknown stuff"; return "unknown stuff";
}; };
void () assign =
{
local float foo;
local float bar;
foo = bar;
foo = bar = 1;
foo = bar = bar + 1;
};