rust/tests/ui/issues/issue-16683.rs

10 lines
157 B
Rust
Raw Normal View History

2014-10-25 17:07:41 -05:00
trait T<'a> {
fn a(&'a self) -> &'a bool;
fn b(&self) {
2022-05-22 00:02:55 -05:00
self.a();
2022-04-01 12:13:25 -05:00
//~^ ERROR lifetime may not live long enough
2014-10-25 17:07:41 -05:00
}
}
fn main() {}