mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
285 B
Rust
10 lines
285 B
Rust
// Regression test for correct pretty-printing of an AST representing `&(mut x)` in help
|
|
// suggestion diagnostic.
|
|
|
|
fn main() {
|
|
let mut &x = &0;
|
|
//~^ ERROR `mut` must be attached to each individual binding
|
|
//~| HELP add `mut` to each binding
|
|
//~| SUGGESTION &(mut x)
|
|
}
|