2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_assignments)]
|
2012-05-21 15:04:30 -05:00
|
|
|
// Issue #2263.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2016-08-13 04:41:43 -05:00
|
|
|
#![allow(unused_variables)]
|
2015-02-15 02:52:21 -06:00
|
|
|
|
2012-05-21 15:04:30 -05:00
|
|
|
// Should pass region checking.
|
2019-05-28 13:47:21 -05:00
|
|
|
fn ok(f: Box<dyn FnMut(&usize)>) {
|
2015-03-25 19:06:52 -05:00
|
|
|
// 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
|
2012-05-29 12:52:32 -05:00
|
|
|
// 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.
|
2019-05-28 13:47:21 -05:00
|
|
|
let mut g: Box<dyn for<'r> FnMut(&'r usize)> = Box::new(|x| { });
|
2012-05-21 15:04:30 -05:00
|
|
|
g = f;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This version is the same as above, except that here, g's type is
|
|
|
|
// inferred.
|
2019-05-28 13:47:21 -05:00
|
|
|
fn ok_inferred(f: Box<dyn FnMut(&usize)>) {
|
|
|
|
let mut g: Box<dyn for<'r> FnMut(&'r usize)> = Box::new(|_| {});
|
2012-05-21 15:04:30 -05:00
|
|
|
g = f;
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-05-21 15:04:30 -05:00
|
|
|
}
|