Spot why redeclaring a type alias causes an error.
type User = { name: string }; type User = { age: number };
What is the bug in this code?