Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![feature(specialization)]
// EMIT_MIR inline_specialization.main.Inline.diff
fn main() {
let x = <Vec::<()> as Foo>::bar();
}
trait Foo {
fn bar() -> u32;
impl<T> Foo for Vec<T> {
#[inline(always)]
default fn bar() -> u32 { 123 }