mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
15 lines
205 B
Rust
15 lines
205 B
Rust
// 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() {}
|