array_scope.cvc 88 B

123456
  1. extern void printInt(int val);
  2. void foo(int[n] arr) {
  3. printInt(n);
  4. foo(arr);
  5. }