mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
11 lines
207 B
Plaintext
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
|
|
}
|
|
}
|