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

static FOO: u8 = 2;

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