summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/unused/assoc-types.rpitit.stderr
blob: 190c4ef0cea0d6df6918f3e7305a9b0a71409fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: unused implementer of `Future` that must be used
  --> $DIR/assoc-types.rs:19:5
   |
LL |     T::foo();
   |     ^^^^^^^^
   |
   = note: futures do nothing unless you `.await` or poll them
note: the lint level is defined here
  --> $DIR/assoc-types.rs:4:9
   |
LL | #![deny(unused_must_use)]
   |         ^^^^^^^^^^^^^^^

error: aborting due to 1 previous error