blob: 4904502c7c18e56cbcf74cbaf35d62a884351f37 [file] [log] [blame]
#![allow(unused)]
const SOME_CONST: i32 = 12;
fn some_function() {
SOME_CONST = 15; // { dg-error "assignment of read-only location" }
}
fn main() {
some_function();
}