blob: 380953f7724d60b732ff8486f45490444929dc72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
fn f(a: i32) void {
const a = 0;
}
export fn entry() void {
f(1);
}
// error
//
// :2:11: error: local constant 'a' shadows function parameter from outer scope
// :1:6: note: previous declaration here
|