14 lines
121 B
Plaintext
14 lines
121 B
Plaintext
package test:foo;
|
|
|
|
interface foo {
|
|
f: func();
|
|
}
|
|
|
|
world foobar {
|
|
export foo;
|
|
}
|
|
|
|
world imports {
|
|
import foo;
|
|
}
|