mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
9 lines
152 B
Rust
9 lines
152 B
Rust
//@ edition:2021
|
|
|
|
trait X {
|
|
fn test() -> Self::Assoc<{ async {} }>;
|
|
//~^ ERROR associated type `Assoc` not found for `Self`
|
|
}
|
|
|
|
pub fn main() {}
|