rust/src/test/run-pass/regions-fn-subtyping-2.rs

29 lines
946 B
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2012-05-31 19:41:01 -05:00
// Issue #2263.
// Here, `f` is a function that takes a pointer `x` and a function
// `g`, where `g` requires its argument `y` to be in the same region
// that `x` is in.
2013-04-18 17:20:36 -05:00
fn has_same_region(f: &fn<'a>(x: &'a int, g: &fn(y: &'a int))) {
2012-05-31 19:41:01 -05:00
// `f` should be the type that `wants_same_region` wants, but
// right now the compiler complains that it isn't.
wants_same_region(f);
}
2013-04-18 17:20:36 -05:00
fn wants_same_region(_f: &fn<'b>(x: &'b int, g: &fn(y: &'b int))) {
2012-05-31 19:41:01 -05:00
}
pub fn main() {
2012-05-31 19:41:01 -05:00
}