add a few more tests to break

This commit is contained in:
Bill Currie 2007-04-07 05:02:09 +00:00 committed by Jeff Teunissen
parent 25bf40a71a
commit cbcd2030cf
1 changed files with 11 additions and 0 deletions

View File

@ -7,3 +7,14 @@ void () foo =
break;
}
};
float () bar =
{
local float break;
local float x;
break = 0;
break ++;
x = break;
break = x;
return break;
};