2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 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-12-10 01:16:18 -06:00
|
|
|
struct Clam<'a> {
|
|
|
|
chowder: &'a int
|
2013-02-11 18:33:31 -06:00
|
|
|
}
|
2012-04-01 16:28:30 -05:00
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
trait get_chowder<'a> {
|
|
|
|
fn get_chowder(&self) -> &'a int;
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
impl<'a> get_chowder<'a> for Clam<'a> {
|
|
|
|
fn get_chowder(&self) -> &'a int { return self.chowder; }
|
2012-03-15 20:13:12 -05:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-01-26 00:46:32 -06:00
|
|
|
let clam = Clam { chowder: &3 };
|
2014-10-14 20:07:11 -05:00
|
|
|
println!("{}", *clam.get_chowder());
|
2012-03-23 13:37:10 -05:00
|
|
|
clam.get_chowder();
|
2012-03-15 20:13:12 -05:00
|
|
|
}
|