Skip to content

Commit f57713b

Browse files
committed
Fix tests after rebase
1 parent 8bd8484 commit f57713b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/ui/lint/unused/unused-async.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ error: unused implementer of `Future` that must be used
44
LL | foo();
55
| ^^^^^
66
|
7+
= note: futures do nothing unless you `.await` or poll them
78
note: the lint level is defined here
89
--> $DIR/unused-async.rs:2:9
910
|
1011
LL | #![deny(unused_must_use)]
1112
| ^^^^^^^^^^^^^^^
12-
= note: futures do nothing unless you `.await` or poll them
1313

1414
error: unused return value of `foo` that must be used
1515
--> $DIR/unused-async.rs:31:5

src/test/ui/lint/unused/unused-supertrait.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error: unused implementer of `Iterator` that must be used
22
--> $DIR/unused-supertrait.rs:9:5
33
|
44
LL | it();
5-
| ^^^^^
5+
| ^^^^
66
|
77
= note: iterators are lazy and do nothing unless consumed
88
note: the lint level is defined here

0 commit comments

Comments
 (0)