mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
223 B
Rust
15 lines
223 B
Rust
// check-pass
|
|
// edition:2021
|
|
#![feature(generic_const_exprs)]
|
|
#![allow(incomplete_features)]
|
|
|
|
#[allow(unused)]
|
|
async fn foo<'a>() {
|
|
let _data = &mut [0u8; { 1 + 4 }];
|
|
bar().await
|
|
}
|
|
|
|
async fn bar() {}
|
|
|
|
fn main() {}
|