Files
cli/vendor/wit-parser/tests/ui/parse-fail/use-conflict2.wit

14 lines
118 B
Plaintext

// parse-fail
package foo:foo;
interface foo {
type x = u32;
}
interface bar {
use foo.{x};
type x = s64;
}