15 lines
136 B
Plaintext
15 lines
136 B
Plaintext
package test:foo;
|
|
|
|
interface bar {
|
|
f: func();
|
|
}
|
|
|
|
interface foo {
|
|
f: func();
|
|
}
|
|
|
|
world foobar {
|
|
export bar;
|
|
export foo;
|
|
}
|