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 parameterized1<'a> {
|
2015-01-03 09:45:00 -06:00
|
|
|
g: Box<FnMut() + 'a>
|
2012-08-23 19:02:41 -05:00
|
|
|
}
|
|
|
|
|
2013-02-26 13:34:00 -06:00
|
|
|
struct not_parameterized1 {
|
2015-01-03 09:45:00 -06:00
|
|
|
g: Box<FnMut() + 'static>
|
2012-08-23 19:02:41 -05:00
|
|
|
}
|
|
|
|
|
2013-02-26 13:34:00 -06:00
|
|
|
struct not_parameterized2 {
|
2015-01-03 09:45:00 -06:00
|
|
|
g: Box<FnMut() + 'static>
|
2012-08-23 19:02:41 -05:00
|
|
|
}
|
|
|
|
|
2014-07-17 23:44:59 -05:00
|
|
|
fn take1<'a>(p: parameterized1) -> parameterized1<'a> { p }
|
2017-11-03 19:30:14 -05:00
|
|
|
//~^ ERROR explicit lifetime required in the type of `p`
|
2013-05-23 20:37:37 -05:00
|
|
|
|
2013-02-26 13:34:00 -06:00
|
|
|
fn take3(p: not_parameterized1) -> not_parameterized1 { p }
|
|
|
|
fn take4(p: not_parameterized2) -> not_parameterized2 { p }
|
2012-08-23 19:02:41 -05:00
|
|
|
|
|
|
|
fn main() {}
|