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

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

23 lines
294 B
Rust
Raw Normal View History

// compile-flags: -Z span_free_formats
fn main() {
println!("{}", test(&()));
}
2020-07-27 14:22:43 -05:00
// 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
}
}