add a test for initialized locals

This commit is contained in:
Bill Currie 2001-06-08 22:54:34 +00:00
parent c6098531b5
commit e61884fefb

View file

@ -27,3 +27,11 @@ float () baz =
{
return foo + bar;
};
void (float x) test =
{
local string str;
local float urk = 0;
print ("owie");
};