Skip to content

Commit ba9793a

Browse files
committed
Update ui test suite to nightly-2024-08-11
1 parent 82c62cd commit ba9793a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/ui/missing-async-in-impl.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
error[E0195]: lifetime parameters or bounds on method `method` do not match the trait declaration
1+
error[E0195]: lifetime parameters or bounds on associated function `method` do not match the trait declaration
22
--> tests/ui/missing-async-in-impl.rs:12:14
33
|
44
5 | async fn method();
5-
| -------- lifetimes in impl do not match this method in trait
5+
| -------- lifetimes in impl do not match this associated function in trait
66
...
77
12 | fn method() {}
8-
| ^ lifetimes do not match method in trait
8+
| ^ lifetimes do not match associated function in trait
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
error[E0195]: lifetime parameters or bounds on method `method` do not match the trait declaration
1+
error[E0195]: lifetime parameters or bounds on associated function `method` do not match the trait declaration
22
--> tests/ui/missing-async-in-trait.rs:12:14
33
|
44
5 | fn method();
5-
| - lifetimes in impl do not match this method in trait
5+
| - lifetimes in impl do not match this associated function in trait
66
...
77
12 | async fn method() {}
8-
| ^^^^^^^^ lifetimes do not match method in trait
8+
| ^^^^^^^^ lifetimes do not match associated function in trait

0 commit comments

Comments
 (0)