blob: 28ea61f38a3ecdf907bc1fc9c21b9673d35b0f73 (
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 1 previous error
For more information about this error, try `rustc --explain E0794`.
|