```ts type X: 'x'; const x: X = 'x'; type Y: 'y'; const y: Y = 'y'; type Z = X | Y; declare const z: Z; switch (z) { case // ^ caret is here } ``` after pressing Ctrl + Space it would be nice to see these suggestions: `x`, `y`, `'x'`, '`y'`