blob: 77bd2b79f8cbcf3bae8d1c0db47dc6b3c9133311 [file] [log] [blame]
// Test various uses of structs with distint variances to make sure
// they permit lifetimes to be approximated as expected.
#![allow(dead_code)]
// compile-pass
struct SomeStruct<T>(fn(T));
fn bar<'min,'max>(v: SomeStruct<&'min ()>)
-> SomeStruct<&'max ()>
where 'max : 'min
{
v
}
fn main() { }