blob: 366787df1b4dd8c89ba94991e85b71e2cf1e7c22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Regression test for #86667, where a garbled suggestion was issued for
// a missing named lifetime parameter.
// compile-flags: --edition 2018
async fn a(s1: &str, s2: &str) -> &str {
//~^ ERROR: missing lifetime specifier [E0106]
s1
//~^ ERROR: lifetime may not live long enough
}
fn b(s1: &str, s2: &str) -> &str {
//~^ ERROR: missing lifetime specifier [E0106]
s1
}
fn main() {}
|