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
181 B
Rust
Raw 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;
}