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> {
|
|
|
|
f: &'a int
|
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()
|
2014-04-07 15:30:48 -05:00
|
|
|
g: |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
|
2014-04-07 15:30:48 -05:00
|
|
|
g: |direct<'a>|: 'static
|
2012-08-23 18:22:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn take_direct(p: direct) -> direct { p } //~ ERROR mismatched types
|
2014-02-10 06:44:03 -06:00
|
|
|
//~^ ERROR cannot infer
|
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
|
|
|
|
2013-02-27 18:41:02 -06:00
|
|
|
fn take_indirect2(p: indirect2) -> indirect2 { p } //~ ERROR mismatched types
|
2014-02-10 06:44:03 -06:00
|
|
|
//~^ ERROR cannot infer
|
2013-05-23 20:37:37 -05:00
|
|
|
|
2012-08-23 18:22:23 -05:00
|
|
|
fn main() {}
|