about summary refs log tree commit diff
path: root/tests/ui/coherence/skip-reporting-if-references-err.stderr
blob: 0ff3e88a0af92e2e63cf060addcd714b30f87552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0726]: implicit elided lifetime not allowed here
  --> $DIR/skip-reporting-if-references-err.rs:6:9
   |
LL | impl<T> ToUnit for T {}
   |         ^^^^^^ expected lifetime parameter
   |
help: indicate the anonymous lifetime
   |
LL | impl<T> ToUnit<'_> for T {}
   |               ++++

error: aborting due to 1 previous error

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