rust/tests/mir-opt/inline/inline_specialization.rs

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

19 lines
366 B
Rust
Raw Normal View History

// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
#![feature(specialization)]
2020-07-27 14:22:43 -05:00
// EMIT_MIR inline_specialization.main.Inline.diff
fn main() {
2023-10-20 22:40:20 -05:00
// CHECK-LABEL: fn main(
// CHECK: (inlined <Vec<()> as Foo>::bar)
let x = <Vec::<()> as Foo>::bar();
}
trait Foo {
fn bar() -> u32;
}
impl<T> Foo for Vec<T> {
#[inline(always)]
default fn bar() -> u32 { 123 }
}