mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 13:37:37 +00:00
13 lines
261 B
Rust
13 lines
261 B
Rust
![]() |
//! This is a regression test for an ICE.
|
||
|
//@ edition: 2021
|
||
|
|
||
|
trait Foo {
|
||
|
async fn foo(self: &dyn Foo) {
|
||
|
//~^ ERROR: `Foo` cannot be made into an object
|
||
|
//~| ERROR invalid `self` parameter type: &dyn Foo
|
||
|
todo!()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|