Section 13 Scopes
Closed this issue · 1 comments
peterzheng98 commented
13.1 作用域规则
补充:for语句即使没有大括号也会引入一个作用域。
void test(){
int a = 0;
for(;;) int a = 0;
}
可通过编译。
peterzheng98 commented
Fixed in v2
Closed this issue · 1 comments
13.1 作用域规则
补充:for语句即使没有大括号也会引入一个作用域。
void test(){
int a = 0;
for(;;) int a = 0;
}
可通过编译。
Fixed in v2