summaryrefslogtreecommitdiffstats
path: root/tests/ui/late-bound-lifetimes/issue-80618.stderr
blob: cf7423fc16feb43b59680d311bd4d725f67de0de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0794]: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
  --> $DIR/issue-80618.rs:6:19
   |
LL |     let _ = foo::<'static>;
   |                   ^^^^^^^
   |
note: the late bound lifetime parameter is introduced here
  --> $DIR/issue-80618.rs:1:8
   |
LL | fn foo<'a>(x: &'a str) -> &'a str {
   |        ^^

error: aborting due to previous error

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