rustc/tests/ui/parser/trait-bounds-not-on-impl.rs
2023-08-02 10:33:26 +02:00

8 lines
109 B
Rust

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