mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 16:31:32 +00:00
16 lines
148 B
Plaintext
16 lines
148 B
Plaintext
package foo:foo;
|
|
|
|
interface foo {
|
|
type a = u32;
|
|
type b = a;
|
|
type c = b;
|
|
}
|
|
|
|
interface bar {
|
|
use foo.{c};
|
|
}
|
|
|
|
interface baz {
|
|
use bar.{c};
|
|
}
|