The following code segfaults: ```py from lpython import i32 a: list[i32] = [] i: i32 for i in range(10): a.append(1) a.pop() ``` Commenting out `a.pop()` doesn't segfaults, or even replacing it with `print(a.pop())`.
The following code segfaults:
Commenting out
a.pop()doesn't segfaults, or even replacing it withprint(a.pop()).