rust/tests/ui/suggestions/suggest-ref-mut.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
421 B
Rust
Raw Normal View History

2018-07-11 05:45:25 -05:00
struct X(usize);
impl X {
fn zap(&self) {
//~^ HELP
//~| SUGGESTION &mut self
self.0 = 32;
//~^ ERROR
}
}
2018-07-10 23:31:07 -05:00
fn main() {
let ref foo = 16;
//~^ HELP
*foo = 32;
//~^ ERROR
if let Some(ref bar) = Some(16) {
//~^ HELP
*bar = 32;
//~^ ERROR
}
match 16 {
ref quo => { *quo = 32; },
//~^ ERROR
//~| HELP
}
}