rust/tests/ui/associated-consts/mismatched_impl_ty_3.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
210 B
Rust
Raw Normal View History

//@ run-pass
trait Trait {
const ASSOC: for<'a, 'b> fn(&'a u32, &'b u32);
}
impl Trait for () {
const ASSOC: for<'a> fn(&'a u32, &'a u32) = |_, _| ();
}
fn main() {
let _ = <() as Trait>::ASSOC;
}