rustc/tests/ui/pattern/patkind-ref-binding-issue-114896.fixed
2024-06-24 14:48:22 +02:00

11 lines
207 B
Plaintext

//@ run-rustfix
#![allow(dead_code)]
fn main() {
fn x(a: &char) {
let &(mut b) = a;
b.make_ascii_uppercase();
//~^ cannot borrow `b` as mutable, as it is not declared as mutable
}
}