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-02-11 18:33:31 -06:00
|
|
|
struct Clam<'self> {
|
|
|
|
chowder: &'self int
|
|
|
|
}
|
2012-04-01 16:28:30 -05:00
|
|
|
|
2013-02-13 18:15:29 -06:00
|
|
|
trait get_chowder<'self> {
|
2013-03-12 21:32:14 -05:00
|
|
|
fn get_chowder(&self) -> &'self int;
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:43:55 -05:00
|
|
|
impl<'self> get_chowder<'self> for Clam<'self> {
|
2013-03-12 21:32:14 -05:00
|
|
|
fn get_chowder(&self) -> &'self 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 };
|
2013-10-21 15:08:31 -05:00
|
|
|
info!("{:?}", *clam.get_chowder());
|
2012-03-23 13:37:10 -05:00
|
|
|
clam.get_chowder();
|
2012-03-15 20:13:12 -05:00
|
|
|
}
|