// Broken Fixture — Intentional type errors for diagnostics testing. /** This variable has a type mismatch — string assigned to number. */ export const brokenNumber: number = "not a number"; /** This function returns wrong type — string instead of boolean. */ export function brokenBoolean(): boolean { return "yes"; } /** This variable uses an undefined identifier. */ export const brokenReference = definitelyUndefined;