# RUN: %python -m artiq.compiler.testbench.signature %s >%t
# RUN: OutputCheck %s --file-to-check=%t
def pulse(len):
# "on"
delay_mu(len)
# "off"
# CHECK-L: f: ()->NoneType delay(600 mu)
def f():
pulse(100)
pulse(200)