summary refs log tree commit diff
path: root/src/test/ui/traits/trait-alias-syntax.rs
blob: 5948d45b6987fcd778123f9e06a1f74e77d6b7c0 (plain)
1
2
3
4
5
6
7
#![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() {}