summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-fn-subtyping.rs
blob: 9570359c69e315a89a230da74692588e044f4d18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// run-pass
#![allow(dead_code)]
#![allow(unused_assignments)]
// Issue #2263.

// pretty-expanded FIXME #23616

#![allow(unused_variables)]

// Should pass region checking.
fn ok(f: Box<dyn FnMut(&usize)>) {
    // Here, g is a function that can accept a usize pointer with
    // lifetime r, and f is a function that can accept a usize pointer
    // with any lifetime.  The assignment g = f should be OK (i.e.,
    // f's type should be a subtype of g's type), because f can be
    // used in any context that expects g's type.  But this currently
    // fails.
    let mut g: Box<dyn for<'r> FnMut(&'r usize)> = Box::new(|x| { });
    g = f;
}

// This version is the same as above, except that here, g's type is
// inferred.
fn ok_inferred(f: Box<dyn FnMut(&usize)>) {
    let mut g: Box<dyn for<'r> FnMut(&'r usize)> = Box::new(|_| {});
    g = f;
}

pub fn main() {
}