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