void my_func() {
  int x = 34;
}

int main() {
  int x = 56;

  my_func();

  int y = 78;
}