rust/tests/mir-opt/inline/inline_trait_method_2.rs
2023-01-11 09:32:08 +00:00

28 lines
398 B
Rust

// compile-flags: -Z span_free_formats -Z mir-opt-level=4
// EMIT_MIR inline_trait_method_2.test2.Inline.after.mir
fn test2(x: &dyn X) -> bool {
test(x)
}
#[inline]
fn test(x: &dyn X) -> bool {
x.y()
}
trait X {
fn y(&self) -> bool {
false
}
}
impl X for () {
fn y(&self) -> bool {
true
}
}
fn main() {
println!("Should be true: {}", test2(&()));
}