We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b81091 commit 4828e38Copy full SHA for 4828e38
integration_tests/symbolics_15.py
@@ -33,13 +33,12 @@ def mmrv(r: Out[list[CPtr]]) -> None:
33
basic_new_stack(x)
34
basic_const_pi(x)
35
36
- # l1: list[S]
+ # l1: list[S] = [x]
37
+ _l1: list[CPtr] = [x]
38
l1: list[CPtr] = []
39
- # l1 = [x]
40
i: i32 = 0
41
- Len: i32 = 1
42
- for i in range(Len):
+ for i in range(len(_l1)):
43
tmp: CPtr = basic_new_heap()
44
l1.append(tmp)
45
basic_assign(l1[0], x)
0 commit comments