2022-04-27 14:37:54 +01:00
|
|
|
pub fn main() void {
|
|
|
|
var i = 0;
|
|
|
|
if (true) |i| {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// error
|
|
|
|
//
|
2022-10-06 15:05:34 +01:00
|
|
|
// :3:16: error: capture 'i' shadows local variable from outer scope
|
2022-04-27 14:37:54 +01:00
|
|
|
// :2:9: note: previous declaration here
|