aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/tab_inside_string.zig
blob: 7fcb4b052e94e1ac873be3805c819c3681cd4f56 (plain)
1
2
3
4
5
6
7
8
export fn entry() void {
    const foo = "	hello";
    _ = foo;
}

// error
//
// :2:18: error: string literal contains invalid byte: '\t'