summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/issue-80186-mut-binding-help-suggestion.rs
blob: a5e9b1db54679b85fefc5bab1e0695a09f0a5346 (plain)
1
2
3
4
5
6
7
8
9
// 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)
}