about summary refs log tree commit diff
path: root/tests/mir-opt/inline/inline_trait_method.rs
blob: 34d2c205791c561b3952e9f7723a51384978bd44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Verify that we do not inline the default impl in a trait object.
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
//@ 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 {
    // CHECK-LABEL: fn test(
    // CHECK-NOT: inlined
    x.y()
}

trait X {
    fn y(&self) -> u32 {
        1
    }
}

impl X for () {
    fn y(&self) -> u32 {
        2
    }
}