mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
12 lines
107 B
Plaintext
12 lines
107 B
Plaintext
package foo:name;
|
|
|
|
interface foo {
|
|
record foo {}
|
|
}
|
|
|
|
use foo as bar;
|
|
|
|
interface name {
|
|
use bar.{foo};
|
|
}
|