]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0637.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0637.rs
CommitLineData
3c0e092e
XL
1fn underscore_lifetime<'_>(str1: &'_ str, str2: &'_ str) -> &'_ str {
2 //~^ ERROR: `'_` cannot be used here [E0637]
3 //~| ERROR: missing lifetime specifier
4 if str1.len() > str2.len() {
5 str1
6 } else {
7 str2
8 }
9}
3b2f2976 10
3c0e092e
XL
11fn and_without_explicit_lifetime<T>()
12where
13 T: Into<&u32>, //~ ERROR: `&` without an explicit lifetime name cannot be used here [E0637]
14{
3b2f2976
XL
15}
16
ea8adc8c 17fn main() {}