12 lines
109 B
Plaintext
12 lines
109 B
Plaintext
|
|
package foo:foo;
|
||
|
|
|
||
|
|
interface foo {
|
||
|
|
type g = char;
|
||
|
|
}
|
||
|
|
|
||
|
|
world w {
|
||
|
|
use foo.{g};
|
||
|
|
|
||
|
|
import foo: func() -> g;
|
||
|
|
}
|