aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-2391.rs
blob: 4904502c7c18e56cbcf74cbaf35d62a884351f37 (plain)
1
2
3
4
5
6
7
8
9
10
#![allow(unused)]
const SOME_CONST: i32 = 12;

fn some_function() {
    SOME_CONST = 15; // { dg-error "assignment of read-only location" }
}

fn main() {
    some_function();
}