summaryrefslogtreecommitdiffstats
path: root/src/test/ui/variance/variance-use-contravariant-struct-2.rs
blob: d4b2d08342a9bd0f9c0d0770aec5ac31179300c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Test various uses of structs with distinct variances to make sure
// they permit lifetimes to be approximated as expected.

#![allow(dead_code)]
// build-pass (FIXME(62277): could be check-pass?)

struct SomeStruct<T>(fn(T));

fn bar<'min,'max>(v: SomeStruct<&'min ()>)
                  -> SomeStruct<&'max ()>
    where 'max : 'min
{
    v
}


fn main() { }