blob: 9adc0a8232388b0d983f25a49a8e8a713792cf7e [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
// edition:2018
use std::sync::Arc;
trait SomeTrait: Send + Sync + 'static {
fn do_something(&self);
}
async fn my_task(obj: Arc<dyn SomeTrait>) {
unimplemented!()
}
fn main() {}