mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
20 lines
229 B
R
20 lines
229 B
R
|
entity spawn (void) { return nil; }
|
||
|
.float f;
|
||
|
float time;
|
||
|
|
||
|
void foo (void)
|
||
|
{
|
||
|
local entity ent;
|
||
|
|
||
|
return;
|
||
|
if (!time) {
|
||
|
ent = spawn ();
|
||
|
ent.f = time + 0.1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int main ()
|
||
|
{
|
||
|
return 0; // if the test compiles, it passes.
|
||
|
}
|