]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/issue-93648.rs
Rollup merge of #107048 - DebugSteven:newer-x-check-cargo, r=albertlarsan68
[rust.git] / tests / ui / async-await / issue-93648.rs
1 // edition:2021
2 // build-pass
3 // compile-flags: -Zdrop-tracking
4
5 fn main() {
6     let _ = async {
7         let mut s = (String::new(),);
8         s.0.push_str("abc");
9         std::mem::drop(s);
10         async {}.await;
11     };
12 }