2012-12-10 19:32:48 -06:00
|
|
|
// 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.
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
struct direct<'a> {
|
2015-01-08 04:54:35 -06:00
|
|
|
f: &'a isize
|
2012-08-23 18:22:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct indirect1 {
|
2013-02-27 18:41:02 -06:00
|
|
|
// Here the lifetime parameter of direct is bound by the fn()
|
2015-01-03 09:45:00 -06:00
|
|
|
g: Box<FnOnce(direct) + 'static>
|
2012-08-23 18:22:23 -05:00
|
|
|
}
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
struct indirect2<'a> {
|
|
|
|
// But here it is set to 'a
|
2015-01-03 09:45:00 -06:00
|
|
|
g: Box<FnOnce(direct<'a>) + 'static>
|
2012-08-23 18:22:23 -05:00
|
|
|
}
|
|
|
|
|
2014-07-17 23:44:59 -05:00
|
|
|
fn take_direct<'a,'b>(p: direct<'a>) -> direct<'b> { p } //~ ERROR mismatched types
|
2013-05-23 20:37:37 -05:00
|
|
|
|
2012-08-23 18:22:23 -05:00
|
|
|
fn take_indirect1(p: indirect1) -> indirect1 { p }
|
2013-05-23 20:37:37 -05:00
|
|
|
|
2014-07-17 23:44:59 -05:00
|
|
|
fn take_indirect2<'a,'b>(p: indirect2<'a>) -> indirect2<'b> { p } //~ ERROR mismatched types
|
2015-01-30 14:26:44 -06:00
|
|
|
//~| expected `indirect2<'b>`
|
|
|
|
//~| found `indirect2<'a>`
|
|
|
|
//~| ERROR mismatched types
|
|
|
|
//~| expected `indirect2<'b>`
|
|
|
|
//~| found `indirect2<'a>`
|
2013-05-23 20:37:37 -05:00
|
|
|
|
2012-08-23 18:22:23 -05:00
|
|
|
fn main() {}
|