peterzheng98/Compiler-2020

Section 13 Scopes

Closed this issue · 1 comments

13.1 作用域规则
补充:for语句即使没有大括号也会引入一个作用域。
void test(){
int a = 0;
for(;;) int a = 0;
}
可通过编译。

Fixed in v2