rust/src/test/run-pass/coerce-reborrow-imm-ptr-rcvr.rs
2013-03-29 16:39:08 -07:00

17 lines
309 B
Rust

struct SpeechMaker {
speeches: uint
}
pub impl SpeechMaker {
fn how_many(&const self) -> uint { self.speeches }
}
fn foo(speaker: &const SpeechMaker) -> uint {
speaker.how_many() + 33
}
pub fn main() {
let mut lincoln = SpeechMaker {speeches: 22};
assert!(foo(&const lincoln) == 55);
}