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

8 lines
109 B
Rust
Raw Normal View History

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