rust/tests/ui/lifetimes/issue-83753-invalid-associa...

9 lines
151 B
Rust

//@ check-fail
struct Foo {}
impl Foo {
fn bar(foo: Foo<Target = usize>) {}
//~^ associated type bindings are not allowed here
}
fn main() {}