mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00
14 lines
242 B
Rust
14 lines
242 B
Rust
![]() |
//@ aux-build:callees.rs
|
||
|
//@ build-pass
|
||
|
//@ compile-flags: --crate-type=lib
|
||
|
|
||
|
extern crate callees;
|
||
|
|
||
|
// Test that forced inlining across crates works as expected.
|
||
|
|
||
|
pub fn caller() {
|
||
|
callees::forced();
|
||
|
|
||
|
callees::forced_with_reason();
|
||
|
}
|