mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +03:00
Test now passes
This commit is contained in:
@@ -8,20 +8,18 @@
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// xfail-test
|
||||
|
||||
// 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.
|
||||
fn has_same_region(f: &fn(x: &a.int, g: &fn(y: &a.int))) {
|
||||
fn has_same_region(f: &fn<'a>(x: &'a int, g: &fn(y: &'a int))) {
|
||||
// `f` should be the type that `wants_same_region` wants, but
|
||||
// right now the compiler complains that it isn't.
|
||||
wants_same_region(f);
|
||||
}
|
||||
|
||||
fn wants_same_region(_f: &fn(x: &b.int, g: &fn(y: &b.int))) {
|
||||
fn wants_same_region(_f: &fn<'b>(x: &'b int, g: &fn(y: &'b int))) {
|
||||
}
|
||||
|
||||
pub fn main() {
|
||||
|
||||
Reference in New Issue
Block a user