(store)
| 131 | a.runs += 1 |
| 132 | |
| 133 | def a_frame(store): |
| 134 | if a.should_run(store): |
| 135 | a_run(store) |
| 136 | if b.should_run(store): |
| 137 | b.run(store) |
| 138 | |
| 139 | a_frame(store) # cold: A runs (writes slot 1), B runs (reads slot 1) |
| 140 | assert a.runs == 1 and b.runs == 1 |
no test coverage detected