function_scope.cvc 126 B

1234567
  1. void foo() {
  2. bar(glob); // Uses function and variable that are defined later than foo()
  3. }
  4. void bar(int a) {}
  5. int glob;