chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
package foo:streams-and-futures;
interface streams-and-futures {
type t1 = stream<u8>;
type t2 = stream<stream<string>>;
type t3 = future;
type t4 = future<list<u8>>;
type t5 = option<stream<future>>;
resource r1;
type t6 = stream<r1>;
type t7 = future<result<r1>>;
type t8 = stream;
foo: func(x: stream<u32>, y: t6) -> future<result<list<string>, string>>;
}