mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
9 lines
144 B
Rust
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() {}
|