2015-02-12 05:16:02 -05:00
|
|
|
// Test various uses of structs with distint variances to make sure
|
|
|
|
// they permit lifetimes to be approximated as expected.
|
|
|
|
|
|
|
|
#![allow(dead_code)]
|
2018-10-31 13:08:01 +01:00
|
|
|
// compile-pass
|
2015-02-12 05:16:02 -05:00
|
|
|
|
|
|
|
struct SomeStruct<T>(fn(T));
|
|
|
|
|
|
|
|
fn bar<'min,'max>(v: SomeStruct<&'min ()>)
|
|
|
|
-> SomeStruct<&'max ()>
|
|
|
|
where 'max : 'min
|
|
|
|
{
|
|
|
|
v
|
|
|
|
}
|
|
|
|
|
2018-10-31 13:08:01 +01:00
|
|
|
|
|
|
|
fn main() { }
|