1 2 3 4 5 6 7 8
async string foo () { Idle.add (foo.callback); yield; return "foo"; } var bar = yield foo (); assert (bar == "foo");