Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
extra_comma_in_destructure.zig
pretty
plain
permalink
blame
history
•
8 lines
•
152 B
1
export fn foo() void {
2
const x, const y, = .{ 1, 2 };
3
_ = .{ x, y };
4
}
5
6
// error
7
//
8
// :2:23: error: expected expression or var decl, found '='