]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-16683.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-16683.rs
1 trait T<'a> {
2 fn a(&'a self) -> &'a bool;
3 fn b(&self) {
4 self.a();
5 //~^ ERROR lifetime may not live long enough
6 }
7 }
8
9 fn main() {}