blob: 7edcc677d7339450012b154a147616702b649659 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// 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 {
g2.get()
//~^ ERROR lifetime may not live long enough
}
}
fn main() {
}
|