2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2013-01-22 19:20:08 -06:00
|
|
|
struct SpeechMaker {
|
2015-03-25 19:06:52 -05:00
|
|
|
speeches: usize
|
2013-01-22 19:20:08 -06:00
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl SpeechMaker {
|
|
|
|
pub fn talk(&mut self) {
|
2013-01-22 19:20:08 -06:00
|
|
|
self.speeches += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn give_a_few_speeches(speaker: &mut SpeechMaker) {
|
|
|
|
|
|
|
|
// Here speaker is reborrowed for each call, so we don't get errors
|
|
|
|
// about speaker being moved.
|
|
|
|
|
|
|
|
speaker.talk();
|
|
|
|
speaker.talk();
|
|
|
|
speaker.talk();
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-01-22 19:20:08 -06:00
|
|
|
let mut lincoln = SpeechMaker {speeches: 22};
|
|
|
|
give_a_few_speeches(&mut lincoln);
|
|
|
|
}
|