mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-04 17:31:10 +08:00
11 lines
200 B
Python
11 lines
200 B
Python
# RUN: %python -m artiq.compiler.testbench.signature %s >%t
|
|
# RUN: OutputCheck %s --file-to-check=%t
|
|
|
|
# CHECK-L: g: ()->NoneType delay(s->mu(2.0) mu)
|
|
def g():
|
|
f()
|
|
f()
|
|
|
|
def f():
|
|
delay(1.0)
|