const id = <T,>(x: T): T => x;
const other = <T extends unknown>(x: T): T => x;
const pair = <T, U>(a: T, b: U): [T, U] => [a, b];
