1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//@ async = true package a:b; interface i { launder: func(x: stream<u8>) -> stream<u8>; } world test { export i; } world runner { import i; export run: async func(); }