rust/tests/ui/parser/trait-bounds-not-on-impl.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
109 B
Rust
Raw Normal View History

2019-05-31 15:50:04 -05:00
trait Foo {}
struct Bar;
2019-05-31 15:50:04 -05:00
impl Foo + Owned for Bar {} //~ ERROR expected a trait, found type
fn main() { }