mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
19 lines
304 B
Rust
19 lines
304 B
Rust
// run-pass
|
|
|
|
struct SpeechMaker {
|
|
speeches: usize
|
|
}
|
|
|
|
impl SpeechMaker {
|
|
pub fn how_many(&self) -> usize { self.speeches }
|
|
}
|
|
|
|
fn foo(speaker: &SpeechMaker) -> usize {
|
|
speaker.how_many() + 33
|
|
}
|
|
|
|
pub fn main() {
|
|
let lincoln = SpeechMaker {speeches: 22};
|
|
assert_eq!(foo(&lincoln), 55);
|
|
}
|