-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ui test suite to nightly-2024-08-11
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |