blob: d8b05950c55de7845d72220f7e556ba1d7031da2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//@ run-pass
//@ compile-flags:-Zmir-opt-level=3
pub trait Foo {
fn bar(&self) -> usize { 2 }
}
impl Foo for () {
fn bar(&self) -> usize { 3 }
}
// Test a case where MIR would inline the default trait method
// instead of bailing out. Issue #40473.
fn main() {
let result = ().bar();
assert_eq!(result, 3);
}
|