<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> **TypeScript Version:** 2.1.1 **Code** ```ts 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.