mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-06-24 01:21:16 -04:00
12 lines
228 B
Zig
12 lines
228 B
Zig
comptime {
|
|
_ = comptime 0;
|
|
}
|
|
comptime {
|
|
comptime _, _ = .{ 0, 0 };
|
|
}
|
|
|
|
// error
|
|
//
|
|
// :2:9: error: redundant comptime keyword in already comptime scope
|
|
// :5:5: error: redundant comptime keyword in already comptime scope
|