artiq/lit-test/test/iodelay/error_call_nested.py

12 lines
288 B
Python

# RUN: %python -m artiq.compiler.testbench.signature +diag +delay %s >%t
# RUN: OutputCheck %s --file-to-check=%t
def f():
# CHECK-L: ${LINE:+1}: error: this call cannot be interleaved
delay(1.0**2)
def g():
# CHECK-L: ${LINE:+1}: note: function called here
f()
f()