14 lines
127 B
Plaintext
14 lines
127 B
Plaintext
|
|
interface bar {
|
||
|
|
use other.{name as the-name};
|
||
|
|
|
||
|
|
enum name {
|
||
|
|
a
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
interface other {
|
||
|
|
record name {
|
||
|
|
f: u8,
|
||
|
|
}
|
||
|
|
}
|