mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
add a test for initialized locals
This commit is contained in:
parent
c6098531b5
commit
e61884fefb
1 changed files with 8 additions and 0 deletions
|
@ -27,3 +27,11 @@ float () baz =
|
|||
{
|
||||
return foo + bar;
|
||||
};
|
||||
|
||||
void (float x) test =
|
||||
{
|
||||
local string str;
|
||||
local float urk = 0;
|
||||
|
||||
print ("owie");
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue