aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/threadlocal_qualifier_on_const.zig
blob: 21371785f3c22166ac372e2515a72a669ac36c4d (plain)
1
2
3
4
5
6
7
8
9
10
threadlocal const x: i32 = 1234;
export fn entry() i32 {
    return x;
}

// error
// backend=stage2
// target=native
//
// :1:1: error: threadlocal variable cannot be constant