DEBSOURCES
Skip Quicknav
sources / node-typescript / 5.0.4%2Bds1-2 / tests / cases / compiler / switchCaseCircularRefeference.ts
12345678
// Repro from #9507 function f(x: {a: "A", b} | {a: "C", e}) { switch (x.a) { case x: break; } }