summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/in-trait/object-safety.rs
blob: 441539e5dd446d94c1c7461b505da9d27dec1c4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// edition:2021

#![feature(async_fn_in_trait)]

trait Foo {
    async fn foo(&self);
}

fn main() {
    let x: &dyn Foo = todo!();
    //~^ ERROR the trait `Foo` cannot be made into an object
}