forked from M-Labs/artiq
13 lines
228 B
Python
13 lines
228 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(1.0) mu)
|
||
|
def g(i):
|
||
|
i.f(1.0)
|
||
|
|
||
|
class c:
|
||
|
def f(self, x):
|
||
|
delay(x)
|
||
|
|
||
|
g(c())
|