mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 02:31:13 +00:00
16 lines
151 B
Plaintext
16 lines
151 B
Plaintext
package foo:foo;
|
|
|
|
interface a {}
|
|
interface b {}
|
|
|
|
world bar {
|
|
import a;
|
|
export b;
|
|
}
|
|
|
|
world foo {
|
|
include bar;
|
|
include bar;
|
|
include bar;
|
|
}
|