mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
add a few more tests to break
This commit is contained in:
parent
25bf40a71a
commit
cbcd2030cf
1 changed files with 11 additions and 0 deletions
|
@ -7,3 +7,14 @@ void () foo =
|
|||
break;
|
||||
}
|
||||
};
|
||||
|
||||
float () bar =
|
||||
{
|
||||
local float break;
|
||||
local float x;
|
||||
break = 0;
|
||||
break ++;
|
||||
x = break;
|
||||
break = x;
|
||||
return break;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue