summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cross-crate/xcrate-trait-lifetime-param.rs
blob: 1fd7eb878d98ac13324dcd1582c014ad3c06ded6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// run-pass
#![allow(dead_code)]
// aux-build:xcrate-trait-lifetime-param.rs

// pretty-expanded FIXME #23616

extern crate xcrate_trait_lifetime_param as other;

struct Reader<'a> {
    b : &'a [u8]
}

impl <'a> other::FromBuf<'a> for Reader<'a> {
    fn from_buf(b : &'a [u8]) -> Reader<'a> {
        Reader { b : b }
    }
}

pub fn main () {}