mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 21:52:25 +00:00
17 lines
173 B
Plaintext
17 lines
173 B
Plaintext
package foo:multiuse;
|
|
|
|
interface foo {
|
|
type t1 = u8;
|
|
type t2 = u8;
|
|
}
|
|
|
|
interface bar {
|
|
type u = u8;
|
|
}
|
|
|
|
interface baz {
|
|
use foo.{t1};
|
|
use bar.{u};
|
|
use foo.{t2};
|
|
}
|