Open loredanacirstea opened 4 years ago
Fails with out of gas:
(let* ( somef (fn* () (let* ( otherf (fn* (a) a) somevar (otherf 29) ) somevar ) ) ) (somef) )
works:
(let* ( somef (fn* () (let* ( otherf (fn* (a) a) somevar (otherf 29) ) (otherf 29) ) ) ) (somef) )
Fails with out of gas:
works: