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

10 lines
157 B
Rust
Raw Normal View History

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