blob: 5e5375b082bbf22b297b68bf78b77df291c69827 [file] [log] [blame]
// edition:2021
trait Foo {
async fn foo(&self);
}
fn main() {
let x: &dyn Foo = todo!();
//~^ ERROR the trait `Foo` cannot be made into an object
}