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