13 lines
147 B
Plaintext
13 lines
147 B
Plaintext
|
|
package foo:foo;
|
||
|
|
|
||
|
|
interface foo {
|
||
|
|
type a = u32;
|
||
|
|
}
|
||
|
|
|
||
|
|
world the-world {
|
||
|
|
import bar: interface {
|
||
|
|
use foo.{a};
|
||
|
|
}
|
||
|
|
import foo: interface {}
|
||
|
|
}
|