2023-08-27 00:00:00 +00:00
|
|
|
// Regression test for MIR inlining with -Zalways-encode-mir enabled in the auxiliary crate.
|
|
|
|
|
// Previously we inlined function not eligible for inlining which lead to linking error:
|
2024-10-17 00:16:19 +08:00
|
|
|
// undefined reference to `internal::S`
|
2023-08-27 00:00:00 +00:00
|
|
|
//
|
|
|
|
|
//@ aux-build:internal.rs
|
|
|
|
|
//@ build-pass
|
|
|
|
|
//@ compile-flags: -O
|
|
|
|
|
extern crate internal;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
println!("{}", internal::f());
|
|
|
|
|
}
|