blob: 28e2b16834bf43a708c64616e6919b0c602b6a60 (
plain)
1
2
3
4
5
6
7
8
9
|
pub fn main() void {
var i = 0;
if (true) |_| {} else |i| {}
}
// error
//
// :3:28: error: capture 'i' shadows local variable from outer scope
// :2:9: note: previous declaration here
|