Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_shadowing.zig
pretty
plain
permalink
blame
history
•
10 lines
•
179 B
1
const pi = 3.14;
2
3
test "inside test block" {
4
// Let's even go inside another block
5
{
6
var pi: i32 = 1234;
7
}
8
}
9
10
// test_error=local variable shadows declaration