]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/trait-object-with-lifetime-bound.rs
Imported Upstream version 1.0.0-alpha.2
[rustc.git] / src / test / run-pass / trait-object-with-lifetime-bound.rs
CommitLineData
85aaf69f
SL
1// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11// Uncovered during work on new scoping rules for safe destructors
12// as an important use case to support properly.
13
14pub struct E<'a> {
15 pub f: &'a u8,
16}
17impl<'b> E<'b> {
18 pub fn m(&self) -> &'b u8 { self.f }
19}
20
21pub struct P<'c> {
22 pub g: &'c u8,
23}
24pub trait M {
25 fn n(&self) -> u8;
26}
27impl<'d> M for P<'d> {
28 fn n(&self) -> u8 { *self.g }
29}
30
31fn extension<'e>(x: &'e E<'e>) -> Box<M+'e> {
32 loop {
33 let p = P { g: x.m() };
34 return Box::new(p) as Box<M+'e>;
35 }
36}
37
38fn main() {
39 let w = E { f: &10u8 };
40 let o = extension(&w);
41 assert_eq!(o.n(), 10u8);
42}