Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
invalid_unicode_escape.zig
pretty
plain
permalink
blame
history
•
8 lines
•
122 B
1
export fn entry() void {
2
const a = '\u{12z34}';
3
}
4
5
// error
6
//
7
// :2:21: error: expected hex digit or '}', found 'z'
8