]> git.proxmox.com Git - rustc.git/blame - src/test/ui/traits/alias/wf.rs
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / traits / alias / wf.rs
CommitLineData
a1dfa0c6 1#![feature(trait_alias)]
a7813a04 2
a1dfa0c6
XL
3trait Foo {}
4trait A<T: Foo> {}
5trait B<T> = A<T>; //~ ERROR `T: Foo` is not satisfied
5bcae85e
SL
6
7fn main() {}