()
| 161 | |
| 162 | @cudaq.kernel |
| 163 | def test9() -> int: |
| 164 | ls = create_list_list_int(1, (3, 4)) |
| 165 | tot = 0 |
| 166 | ls[1] = [5] |
| 167 | ls[2][3] = 2 |
| 168 | inner = ls[2] |
| 169 | inner[1] = 2 |
| 170 | for l in ls: |
| 171 | tot += sum(l) |
| 172 | return tot |
| 173 | |
| 174 | assert test9() == 15 |
| 175 |
no test coverage detected