1pub fn main() void {
2 var foo = true;
3 _ = foo;
4}
5fn foo() void {}
6
7// error
8//
9// :2:9: error: local variable shadows declaration of 'foo'
10// :5:1: note: declared here