rust/tests/ui/async-await/issues/issue-67611-static-mut-refs.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
812 B
Rust
Raw Normal View History

2020-01-23 20:34:11 +00:00
//@ build-pass
//@ edition:2018
2023-09-18 15:18:51 +00:00
#![feature(if_let_guard)]
2020-01-23 20:34:11 +00:00
static mut A: [i32; 5] = [1, 2, 3, 4, 5];
fn is_send_sync<T: Send + Sync>(_: T) {}
async fn fun() {
let u = unsafe { A[async { 1 }.await] };
unsafe {
match A {
i if async { true }.await => (),
2023-09-18 15:18:51 +00:00
i if let Some(1) = async { Some(1) }.await => (),
2020-01-23 20:34:11 +00:00
_ => (),
}
}
}
fn main() {
let index_block = async {
let u = unsafe { A[async { 1 }.await] };
};
let match_block = async {
unsafe {
match A {
i if async { true }.await => (),
2023-09-18 15:18:51 +00:00
i if let Some(2) = async { Some(2) }.await => (),
2020-01-23 20:34:11 +00:00
_ => (),
}
}
};
is_send_sync(index_block);
is_send_sync(match_block);
is_send_sync(fun());
}