2014-05-02 13:04:26 -05:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2014-08-27 20:46:52 -05:00
|
|
|
// Various examples of structs whose fields are not well-formed.
|
2014-05-05 20:56:44 -05:00
|
|
|
|
2014-08-27 20:46:52 -05:00
|
|
|
#![allow(dead_code)]
|
2014-05-02 13:04:26 -05:00
|
|
|
|
2015-08-07 12:23:11 -05:00
|
|
|
struct Ref<'a, T> {
|
2014-08-27 20:46:52 -05:00
|
|
|
field: &'a T
|
2015-08-11 13:20:27 -05:00
|
|
|
//~^ ERROR the parameter type `T` may not live long enough
|
2014-05-02 13:04:26 -05:00
|
|
|
}
|
|
|
|
|
2014-08-27 20:46:52 -05:00
|
|
|
struct RefOk<'a, T:'a> {
|
|
|
|
field: &'a T
|
|
|
|
}
|
|
|
|
|
2015-08-07 12:23:11 -05:00
|
|
|
struct RefIndirect<'a, T> {
|
2014-08-27 20:46:52 -05:00
|
|
|
field: RefOk<'a, T>
|
2015-08-11 13:20:27 -05:00
|
|
|
//~^ ERROR the parameter type `T` may not live long enough
|
2014-08-27 20:46:52 -05:00
|
|
|
}
|
|
|
|
|
2015-08-07 12:23:11 -05:00
|
|
|
struct DoubleRef<'a, 'b, T> {
|
2014-08-27 20:46:52 -05:00
|
|
|
field: &'a &'b T
|
2015-08-11 13:20:27 -05:00
|
|
|
//~^ ERROR reference has a longer lifetime than the data it references
|
2014-05-02 13:04:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|