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

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

12 lines
182 B
Rust
Raw Permalink Normal View History

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