TypeScript Version: 2.1.1
Code
type Test = "foo" | "bar" | string;
const x: Test = "/* CURSOR POSITION */";
Expected behavior:
tsserver returns "foo" and "bar" as completion candidates.
Actual behavior:
2.0.10 behaves as expected.
2.1.1 returns no candidates.