function Component() {
  const x = [];
  for (const item of [1, 2]) {
    break;
  }
  return x;
}

export const FIXTURE_ENTRYPOINT = {
  fn: Component,
  params: [],
  isComponent: false,
};