2013-03-28 21:24:17 -05:00
|
|
|
// Copyright 2013 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-06-19 11:32:56 -05:00
|
|
|
// Test that free regions ordering only goes one way. That is,
|
2013-12-10 01:16:18 -06:00
|
|
|
// we have `&'a Node<'b, T>`, which implies that `'a <= 'b`,
|
|
|
|
// but not `'b <= 'a`. Hence returning `&self.val` (which has lifetime
|
|
|
|
// `'a`) where `'b` is expected yields an error.
|
2013-06-19 11:32:56 -05:00
|
|
|
//
|
|
|
|
// This test began its life as a test for issue #4325.
|
|
|
|
|
2014-08-27 20:46:52 -05:00
|
|
|
struct Node<'b, T:'b> {
|
2013-03-28 21:24:17 -05:00
|
|
|
val: T,
|
2013-12-10 01:16:18 -06:00
|
|
|
next: Option<&'b Node<'b, T>>
|
2013-03-28 21:24:17 -05:00
|
|
|
}
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
impl<'b, T> Node<'b, T> {
|
|
|
|
fn get<'a>(&'a self) -> &'b T {
|
2013-03-28 21:24:17 -05:00
|
|
|
match self.next {
|
|
|
|
Some(ref next) => next.get(),
|
2014-02-10 06:44:03 -06:00
|
|
|
None => &self.val //~ ERROR cannot infer
|
2013-03-28 21:24:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|