The following code: ``` TypeScript enum E { a = -5, b, c } ``` Now emits starting with -5 for a, then -4 for b and -3 for c. Previously b = 0, c = 1, unexpectedly.