rust/tests/ui/coercion/coerce-reborrow-mut-ptr-arg.rs
许杰友 Jieyou Xu (Joe) 95ff642797 tests: remove //@ pretty-expanded usages
Done with

```bash
sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs
```

and

```
sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs
```
2024-11-26 02:50:48 +08:00

25 lines
440 B
Rust

//@ run-pass
struct SpeechMaker {
speeches: usize
}
fn talk(x: &mut SpeechMaker) {
x.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.
talk(speaker);
talk(speaker);
talk(speaker);
}
pub fn main() {
let mut lincoln = SpeechMaker {speeches: 22};
give_a_few_speeches(&mut lincoln);
}