rust/tests/ui/associated-types/associated-types-eq-expr-pa...

17 lines
317 B
Rust

// Check that an associated type cannot be bound in an expression path.
trait Foo {
type A;
fn bar() -> isize;
}
impl Foo for isize {
type A = usize;
fn bar() -> isize { 42 }
}
pub fn main() {
let x: isize = Foo::<A=usize>::bar();
//~^ ERROR associated type bindings are not allowed here
}