Shouldn't const initialised with a string literal default to a string literal type? ``` ts const s = 'a'; let a: 'a'; a = s; // error today ```