rust/tests/mir-opt/inline/inline_trait_method.rs
2023-04-06 10:08:07 +01:00

24 lines
348 B
Rust

// ignore-wasm32 compiled with panic=abort by default
// compile-flags: -Z span_free_formats
fn main() {
println!("{}", test(&()));
}
// EMIT_MIR inline_trait_method.test.Inline.after.mir
fn test(x: &dyn X) -> u32 {
x.y()
}
trait X {
fn y(&self) -> u32 {
1
}
}
impl X for () {
fn y(&self) -> u32 {
2
}
}