mirror of https://github.com/m-labs/artiq.git
12 lines
288 B
Python
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()
|