mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
16 lines
246 B
Rust
16 lines
246 B
Rust
|
// edition:2018
|
||
|
// build-pass
|
||
|
// compile-flags: -Z mir-opt-level=2 -L.
|
||
|
// aux-build:issue_76375_aux.rs
|
||
|
|
||
|
#![crate_type = "lib"]
|
||
|
|
||
|
extern crate issue_76375_aux;
|
||
|
|
||
|
pub async fn g() {
|
||
|
issue_76375_aux::f(true);
|
||
|
h().await;
|
||
|
}
|
||
|
|
||
|
pub async fn h() {}
|