function identity‹T›(arg: T): T {
    return arg;
}

let myIdentity: ‹U›(arg: U) => U = identity;