blob: 8a02ef4ec85fda53877f23bf23a1e567542ccf22 [file] [log] [blame]
// 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 mismatched types
}
fn main() { }