rust/tests/ui/regions/regions-fn-subtyping.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
877 B
Rust
Raw Normal View History

//@ run-pass
#![allow(dead_code)]
#![allow(unused_assignments)]
2012-05-21 20:04:30 +00:00
// Issue #2263.
//@ pretty-expanded FIXME #23616
#![allow(unused_variables)]
2012-05-21 20:04:30 +00:00
// Should pass region checking.
2019-05-28 18:47:21 +00:00
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
2012-05-29 17:52:32 +00: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 18:47:21 +00:00
let mut g: Box<dyn for<'r> FnMut(&'r usize)> = Box::new(|x| { });
2012-05-21 20:04:30 +00:00
g = f;
}
// This version is the same as above, except that here, g's type is
// inferred.
2019-05-28 18:47:21 +00:00
fn ok_inferred(f: Box<dyn FnMut(&usize)>) {
let mut g: Box<dyn for<'r> FnMut(&'r usize)> = Box::new(|_| {});
2012-05-21 20:04:30 +00:00
g = f;
}
pub fn main() {
2012-05-21 20:04:30 +00:00
}