This works correctly: ```tsx let a = <T>( a: T ) => { } ``` But this does not: ```tsx let a = <T extends Record<string, any>>( a: T ) => { } ```
This works correctly:
But this does not: