9 lines
203 B
Text
9 lines
203 B
Text
def main() -> field {
|
|
field a = 2;
|
|
field a = 3; // shadowing
|
|
for u32 i in 0..5 {
|
|
bool a = true; // shadowing
|
|
}
|
|
// `a` is the variable declared before the loop
|
|
return a;
|
|
}
|