rust/tests/ui/parser/trait-bounds-not-on-impl.rs
2023-01-11 09:32:08 +00:00

8 lines
109 B
Rust

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