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

13 lines
145 B
Plaintext

package foo:dep1;
package foo:dep2 {
interface i2 {
type t = string;
}
}
interface i1 {
use foo:dep2/i2.{t};
type o = option<t>;
}