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,55 @@
package foo:bar;
interface foo {
resource a {
}
resource b {
constructor();
}
resource c {
constructor(x: u32);
}
resource d {
constructor(x: u32);
a: func();
b: static func();
}
resource e {
constructor(other: own<e>, other2: borrow<e>);
method: func(thing: own<e>, thing2: borrow<e>);
}
resource f {
constructor() -> result<f>;
}
resource g {
constructor() -> result<g, string>;
}
}
world w {
resource a;
resource b {
}
resource c {
constructor();
}
}
interface i {
resource a;
type t1 = a;
type t2 = borrow<a>;
type t3 = borrow<t1>;
}