about summary refs log tree commit diff
path: root/tests/ui/async-await/in-trait/bad-region.stderr
blob: 9203fd790af782a681146b9811ac1869adc4e868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0726]: implicit elided lifetime not allowed here
  --> $DIR/bad-region.rs:12:6
   |
LL | impl BleRadio for Radio {
   |      ^^^^^^^^ expected lifetime parameter
   |
help: indicate the anonymous lifetime
   |
LL | impl BleRadio<'_> for Radio {
   |              ++++

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0726`.