mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 09:07:20 +00:00
15 lines
177 B
Rust
15 lines
177 B
Rust
// aux-build:issue-107036.rs
|
|
// edition:2021
|
|
// check-pass
|
|
|
|
extern crate issue_107036;
|
|
use issue_107036::S;
|
|
|
|
async fn f() {
|
|
S{}.f().await;
|
|
}
|
|
|
|
fn main() {
|
|
let _ = f();
|
|
}
|