blob: 7f59067483b9643499b0e1e86bf6886d03926cfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Test various uses of structs with distint variances to make sure
// they permit lifetimes to be approximated as expected.
struct SomeStruct<T>(fn(T));
fn foo<'min,'max>(v: SomeStruct<&'max ()>)
-> SomeStruct<&'min ()>
where 'max : 'min
{
v
//~^ ERROR lifetime may not live long enough
}
fn main() { }
|