]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-return-type-is-anon.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / lifetimes / lifetime-errors / ex3-both-anon-regions-return-type-is-anon.rs
CommitLineData
3b2f2976
XL
1struct Foo {
2 field: i32
3}
041b39d2 4
3b2f2976
XL
5impl Foo {
6 fn foo<'a>(&self, x: &i32) -> &i32 {
923072b8
FG
7 x
8 //~^ ERROR lifetime may not live long enough
3b2f2976 9 }
223e47cc 10}
3b2f2976
XL
11
12fn main() { }