]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/trait-bounds-not-on-impl.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / parser / trait-bounds-not-on-impl.rs
CommitLineData
dc9dc135 1trait Foo {}
970d7e83
LB
2
3struct Bar;
4
dc9dc135 5impl Foo + Owned for Bar {} //~ ERROR expected a trait, found type
970d7e83
LB
6
7fn main() { }