summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-mut-refs/feature-gate-const_mut_refs.rs
blob: ce9be4ac5c2af5abfb35ad62c70f058e5e96074c (plain)
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

}