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