rust/tests/crashes/127676.rs
Matthias Krüger 5ab2e40294 add more tests
2024-07-21 17:50:57 +02:00

9 lines
144 B
Rust

//@ known-bug: #127676
//@ edition:2018
#![feature(dyn_star,const_async_blocks)]
static S: dyn* Send + Sync = async { 42 };
pub fn main() {}