mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +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() {}
|