blob: ef459f6a28ec8864669d944a5b889a0d3a47bcde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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() {}
|