mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
10 lines
174 B
Zig
10 lines
174 B
Zig
export fn entry() void {
|
|
const foo = " hello";
|
|
_ = foo;
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :2:18: error: string literal contains invalid byte: '\t'
|