//@ default-bindgen-args = false
// Note that default bindgen args, where Rust uses `--generate-all`, is
// specifically disabled for this test as that's what's being tested here.
package foo:bar;
world test {
export foo:baz/a;
}
world runner {
import foo:baz/a;
export run: func();
}
package foo:baz {
interface a {
x: func();
}
}