rust/tests/ui/suggestions/issue-86667.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
396 B
Rust
Raw Normal View History

// 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
2022-06-05 16:33:09 +00:00
//~^ ERROR: lifetime may not live long enough
}
fn b(s1: &str, s2: &str) -> &str {
//~^ ERROR: missing lifetime specifier [E0106]
s1
}
fn main() {}