export function qux(cond: boolean) {
  if (cond) {
    return 1;
  } else {
    return 2;
  }
}