1 2 3 4 5 6 7 8
fn main() { foo(&mut 5); } const fn foo(x: &mut i32) -> i32 { //~ ERROR mutable references *x + 1 }