]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/regions-fn-subtyping.rs
0057a51012dd0bdaef6fdeda53b048a37e14aaf0
[rust.git] / src / test / run-pass / regions-fn-subtyping.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Issue #2263.
12
13 #![allow(dead_assignment)]
14 #![allow(unused_variable)]
15 #![allow(unknown_features)]
16
17 // FIXME (#22405): Replace `Box::new` with `box` here when/if possible.
18
19 // Should pass region checking.
20 fn ok(f: Box<FnMut(&uint)>) {
21     // Here, g is a function that can accept a uint pointer with
22     // lifetime r, and f is a function that can accept a uint pointer
23     // with any lifetime.  The assignment g = f should be OK (i.e.,
24     // f's type should be a subtype of g's type), because f can be
25     // used in any context that expects g's type.  But this currently
26     // fails.
27     let mut g: Box<for<'r> FnMut(&'r uint)> = Box::new(|x| { });
28     g = f;
29 }
30
31 // This version is the same as above, except that here, g's type is
32 // inferred.
33 fn ok_inferred(f: Box<FnMut(&uint)>) {
34     let mut g: Box<for<'r> FnMut(&'r uint)> = Box::new(|_| {});
35     g = f;
36 }
37
38 pub fn main() {
39 }