Skip to content

Commit

Permalink
Update ui test suite to nightly-2024-08-11
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 11, 2024
1 parent 82c62cd commit ba9793a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions tests/ui/missing-async-in-impl.stderr
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
error[E0195]: lifetime parameters or bounds on method `method` do not match the trait declaration
error[E0195]: lifetime parameters or bounds on associated function `method` do not match the trait declaration
--> tests/ui/missing-async-in-impl.rs:12:14
|
5 | async fn method();
| -------- lifetimes in impl do not match this method in trait
| -------- lifetimes in impl do not match this associated function in trait
...
12 | fn method() {}
| ^ lifetimes do not match method in trait
| ^ lifetimes do not match associated function in trait
6 changes: 3 additions & 3 deletions tests/ui/missing-async-in-trait.stderr
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
error[E0195]: lifetime parameters or bounds on method `method` do not match the trait declaration
error[E0195]: lifetime parameters or bounds on associated function `method` do not match the trait declaration
--> tests/ui/missing-async-in-trait.rs:12:14
|
5 | fn method();
| - lifetimes in impl do not match this method in trait
| - lifetimes in impl do not match this associated function in trait
...
12 | async fn method() {}
| ^^^^^^^^ lifetimes do not match method in trait
| ^^^^^^^^ lifetimes do not match associated function in trait

0 comments on commit ba9793a

Please sign in to comment.