// This caused an infinite loop in the compiler
function MyApp(props) {
const y = makeObj();
const tmp = y.a;
const tmp2 = tmp.b;
y.push(tmp2);
return y;
}
// This caused an infinite loop in the compiler
function MyApp(props) {
const y = makeObj();
const tmp = y.a;
const tmp2 = tmp.b;
y.push(tmp2);
return y;
}