2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-02-08 16:43:19 +08:00
artiq/artiq/test/lit/iodelay/error_call_subst.py

14 lines
286 B
Python

# RUN: %python -m artiq.compiler.testbench.signature +diag +delay %s >%t
# RUN: OutputCheck %s --file-to-check=%t
def pulse(len):
# "on"
delay_mu(len)
# "off"
delay_mu(len)
def f():
a = 100
# CHECK-L: ${LINE:+1}: error: call cannot be interleaved
pulse(a)