blob: 0679b96f6c58ac24203acfa4c7fd023cd3e5ca91 [file] [log] [blame]
// edition: 2021
#![feature(return_type_notation)]
//~^ WARN the feature `return_type_notation` is incomplete
trait Trait {
async fn method() {}
}
fn bar<T: Trait<methid(): Send>>() {}
//~^ ERROR cannot find associated function `methid` for `Trait`
fn main() {}