Files
zig/test/cases/compile_errors/threadlocal_qualifier_on_const.zig
2022-06-30 09:57:38 +02:00

11 lines
177 B
Zig

threadlocal const x: i32 = 1234;
export fn entry() i32 {
return x;
}
// error
// backend=stage2
// target=native
//
// :1:1: error: threadlocal variable cannot be constant