about summary refs log tree commit diff
path: root/tests/ui/lifetimes/issue-34979.stderr
blob: 0877f1548a842997c048ae2c31effb5068448ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error[E0283]: type annotations needed: cannot satisfy `&'a (): Foo`
  --> $DIR/issue-34979.rs:6:13
   |
LL |     &'a (): Foo,
   |             ^^^
   |
note: multiple `impl`s or `where` clauses satisfying `&'a (): Foo` found
  --> $DIR/issue-34979.rs:2:1
   |
LL | impl<'a, T> Foo for &'a T {}
   | ^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL |     &'a (): Foo,
   |             ^^^
LL |     &'static (): Foo;
   |                  ^^^

error: aborting due to 1 previous error

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