19 lines
198 B
Plaintext
19 lines
198 B
Plaintext
package foo:foo;
|
|
|
|
interface foo {
|
|
record bar {
|
|
f: u8,
|
|
}
|
|
|
|
a: func() -> bar;
|
|
}
|
|
|
|
world module {
|
|
import foo;
|
|
import other-name: interface {
|
|
use foo.{bar};
|
|
|
|
a: func() -> bar;
|
|
}
|
|
}
|