mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
12 lines
192 B
Rust
12 lines
192 B
Rust
//@ edition:2021
|
|
//@ build-pass
|
|
|
|
fn main() {
|
|
let _ = async {
|
|
let mut s = (String::new(),);
|
|
s.0.push_str("abc");
|
|
std::mem::drop(s);
|
|
async {}.await;
|
|
};
|
|
}
|