Files
cli/vendor/wit-parser/tests/ui/multi-package-deps/root.wit

16 lines
223 B
Plaintext
Raw Normal View History

package foo:root;
package foo:nest {
interface nesty {
use foo:dep1/i1.{o};
type l = list<o>;
}
}
interface i0 {
use foo:dep1/i1.{o};
use foo:nest/nesty.{l};
type r = result<o>;
type r1 = result<l>;
}