Codea Crash. Scroll parameters up, then press restart

For a crashy good time, replicate with this code. Tested on iPad 1


--# Main
-- ScrollCrash

a = 0
b = 1
c = 2
d = 3
e = 4
f = 5
g = 6
h = 7

-- Use this function to perform your initial setup
function setup()
    parameter.watch("a")
    parameter.watch("b")
    parameter.watch("c")
    parameter.watch("d")
    parameter.watch("e")
    parameter.watch("f")
    parameter.watch("g")
    parameter.watch("h")
end

-- This function gets called once every frame
function draw()
a = a + 1
b = b + 1
c = c + 1
d = d + 1
e = e + 1
f = f + 1
g = g + 1
h = h + 1
    
end

Scrolled the output window all the way up, restart, crash. Apparently the parameters don’t like it if you’re not watching them. Everything’s fine until you do a restart.