mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 17:55:13 +00:00
9 lines
97 B
Rust
9 lines
97 B
Rust
//@ run-pass
|
|
|
|
#![feature(trait_alias)]
|
|
|
|
pub trait Foo {}
|
|
pub trait FooAlias = Foo;
|
|
|
|
fn main() {}
|