class Program {
  int A[0xA];

  void bar() {
    for i = 0, 0xA {
      A[i] = i;
    }
  }

  void main() {
    bar();
  }
}
