class test
{
  public static void main(String args[])
  {
    for(int i=0;i<9;i++);
    System.out.println(i);
  }
}

编译错误

for括号内的声明的作用域属于循环体内部