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

// error
//
// :1:1: error: threadlocal variable cannot be constant