array_assign.cvc 63 B

123456
  1. void foo() {
  2. int[4] a;
  3. a = [1, 2, 3];
  4. a[0] = 1;
  5. }