]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/regions-trait-object-1.rs
Imported Upstream version 1.0.0~beta
[rustc.git] / src / test / run-pass / regions-trait-object-1.rs
CommitLineData
85aaf69f
SL
1// Copyright 2012-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// This is a regression test for something that only came up while
12// attempting to bootstrap libsyntax; it is adapted from
13// `syntax::ext::tt::generic_extension`.
14
c34b1796
AL
15// pretty-expanded FIXME #23616
16
85aaf69f
SL
17pub struct E<'a> {
18 pub f: &'a u8,
19}
20impl<'b> E<'b> {
21 pub fn m(&self) -> &'b u8 { self.f }
22}
23
24pub struct P<'c> {
25 pub g: &'c u8,
26}
27pub trait M {
28 fn n(&self) -> u8;
29}
30impl<'d> M for P<'d> {
31 fn n(&self) -> u8 { *self.g }
32}
33
34fn extension<'e>(x: &'e E<'e>) -> Box<M+'e> {
35 loop {
36 let p = P { g: x.m() };
37 return Box::new(p) as Box<M+'e>;
38 }
39}
40
41fn main() {
c34b1796 42 let w = E { f: &10 };
85aaf69f 43 let o = extension(&w);
c34b1796 44 assert_eq!(o.n(), 10);
85aaf69f 45}