mirror of https://github.com/m-labs/artiq.git
10 lines
360 B
Python
10 lines
360 B
Python
# RUN: %python -m artiq.compiler.testbench.signature +diag +delay %s >%t
|
|
# RUN: OutputCheck %s --file-to-check=%t
|
|
|
|
def f():
|
|
r = range(10)
|
|
# CHECK-L: ${LINE:+2}: error: for statement cannot be interleaved because trip count is indeterminate
|
|
# CHECK-L: ${LINE:+1}: note: this value is not a constant range literal
|
|
for _ in r:
|
|
delay_mu(1)
|