rust/tests/ui/error-codes/E0637.rs

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

18 lines
491 B
Rust
Raw Normal View History

fn underscore_lifetime<'_>(str1: &'_ str, str2: &'_ str) -> &'_ str {
//~^ ERROR: `'_` cannot be used here [E0637]
//~| ERROR: missing lifetime specifier
if str1.len() > str2.len() {
str1 //~ ERROR: lifetime may not live long enough
} else {
str2 //~ ERROR: lifetime may not live long enough
}
}
fn and_without_explicit_lifetime<T>()
where
T: Into<&u32>, //~ ERROR: `&` without an explicit lifetime name cannot be used here [E0637]
{
}
2017-09-19 05:55:21 +00:00
fn main() {}