mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 04:05:27 +00:00
16 lines
164 B
Plaintext
16 lines
164 B
Plaintext
package foo:foo;
|
|
|
|
interface types {
|
|
enum level {
|
|
info,
|
|
debug,
|
|
}
|
|
}
|
|
|
|
interface console {
|
|
use types.{level};
|
|
|
|
log: func(level: level, msg: string);
|
|
}
|
|
|