rust/tests/ui/regions/regions-early-bound-error-m...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
458 B
Rust
Raw Normal View History

// Tests that you can use a fn lifetime parameter as part of
// the value for a type parameter in a bound.
trait GetRef<'a> {
fn get(&self) -> &'a isize;
}
struct Box<'a> {
t: &'a isize
}
impl<'a> GetRef<'a> for Box<'a> {
fn get(&self) -> &'a isize {
self.t
}
}
impl<'a> Box<'a> {
fn or<'b,G:GetRef<'b>>(&self, g2: G) -> &'a isize {
2015-01-12 14:01:44 +08:00
g2.get()
2022-04-02 01:13:25 +08:00
//~^ ERROR lifetime may not live long enough
}
}
fn main() {
}