summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/read_immutable_static.rs
blob: a8d8cfacc7ce9d195ae6e4b662c823c0f7f09843 (plain)
1
2
3
4
5
6
7
8
9
// skip-filecheck
// unit-test: ConstProp

static FOO: u8 = 2;

// EMIT_MIR read_immutable_static.main.ConstProp.diff
fn main() {
    let x = FOO + FOO;
}