mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
17 lines
309 B
Rust
17 lines
309 B
Rust
// ignore-wasm32 compiled with panic=abort by default
|
|
#![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 }
|
|
}
|