8 lines
179 B
Rust
8 lines
179 B
Rust
|
#![feature(trait_alias)]
|
||
|
|
||
|
trait Foo {}
|
||
|
auto trait A = Foo; //~ ERROR trait aliases cannot be `auto`
|
||
|
unsafe trait B = Foo; //~ ERROR trait aliases cannot be `unsafe`
|
||
|
|
||
|
fn main() {}
|