14 lines
113 B
Plaintext
14 lines
113 B
Plaintext
|
|
package foo:chain;
|
||
|
|
|
||
|
|
interface def {
|
||
|
|
use a.{a};
|
||
|
|
|
||
|
|
enum name {
|
||
|
|
other,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
interface a {
|
||
|
|
type a = u8;
|
||
|
|
}
|