mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 21:31:26 +00:00
9 lines
110 B
Rust
9 lines
110 B
Rust
fn main() {
|
|
foo(&mut 5);
|
|
}
|
|
|
|
const fn foo(x: &mut i32) -> i32 { //~ ERROR mutable references
|
|
*x + 1
|
|
|
|
}
|