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

18 lines
243 B
Plaintext

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