LSL-PyOptimizer/unit_tests/regression.suite/inliner-for-bug.lsl
Sei Lisa 128005e889 Fix bug in inlining of empty for() initializer
It was causing an exception. Fixed now.

Thanks to Cindy Reynaud for reporting the problem and sending a backtrace.
2019-02-02 00:50:05 +01:00

10 lines
138 B
Text

default
{
state_entry()
{
for (; llSetRegionPos(<0,0,2>); llSleep(3))
{
llSleep(4);
}
}
}