]> git.proxmox.com Git - rustc.git/blame - tests/ui/async-await/in-trait/bad-signatures.rs
New upstream version 1.73.0+dfsg1
[rustc.git] / tests / ui / async-await / in-trait / bad-signatures.rs
CommitLineData
9c376795
FG
1// edition:2021
2
3#![feature(async_fn_in_trait)]
9c376795
FG
4
5trait MyTrait {
6 async fn bar(&abc self);
7 //~^ ERROR expected identifier, found keyword `self`
8 //~| ERROR expected one of `:`, `@`, or `|`, found keyword `self`
9}
10
11impl MyTrait for () {
12 async fn bar(&self) {}
13}
14
15fn main() {}