redefined_dimension.cvc 110 B

12345
  1. int n = 1;
  2. void foo() {
  3. // n is NOT 1 here since the name "n" is first redefined as array
  4. int[n] n;
  5. }