**TypeScript Version:** 2.4.0 **Code** ```ts type Foo = 'lol' const barr: Foo = `lol` // Type 'string' is not assignable to type '"lol"'. ``` https://www.typescriptlang.org/play/#src=type%20Foo%20%3D%20'lol'%0A%0Aconst%20barr%3A%20Foo%20%3D%20%60lol%60 **Expected behavior:** ```ts type Foo = 'lol' const barr: Foo = `lol` // No error ``` **Actual behavior:** ```ts type Foo = 'lol' const barr: Foo = `lol` // Type 'string' is not assignable to type '"lol"'. ```