Files
cli/vendor/wit-parser/tests/ui/foreign-interface-dep-gated.wit

18 lines
231 B
Plaintext
Raw Normal View History

package a:b1;
world the-world {
include a:b2/the-world;
}
package a:b2 {
world the-world {
@unstable(feature = disabled)
import a:b3/thing;
}
}
package a:b3 {
@unstable(feature = disabled)
interface thing {}
}