Literals such as 0 can be inferred correctly but unique symbols are not. <!-- Please try to reproduce the issue with the latest published version. It may have already been fixed. For npm: `typescript@next` This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly --> **TypeScript Version:** 3.7.x-dev.20191224 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** **Code** ```ts let revision: symbol; const rev = revision = Symbol(); rev === revision; ``` **Expected behavior:** Type rev is unique symbol. **Actual behavior:** Type rev is symbol. Can't even declare that rev is a unique symbol. **Playground Link:** https://www.typescriptlang.org/play/index.html?ts=3.8.0-dev.20191224&ssl=1&ssc=1&pln=3&pc=18#code/DYUwLgBATiBuCWBneB7AdgLgogngWwCMVgBuAKAGN1FIZYIBeaOJVNRiAZXyOAAoAlOTqMGTOq3QkgA **Related Issues:** <!-- Did you find other bugs that looked similar? -->