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

8 lines
109 B
Rust

trait Foo {}
struct Bar;
impl Foo + Owned for Bar {} //~ ERROR expected a trait, found type
fn main() { }