Files
cli/vendor/wit-parser/tests/ui/resources1.wit

13 lines
158 B
Plaintext
Raw Normal View History

package foo:resources1;
interface resources1 {
t1: func(a: borrow<r1>);
t2: func(a: own<r1>);
t3: func(a: r1);
resource r1 {
f1: func();
}
}