class Generics {
    a;
    id(b) { return b; }
    setA(x) {
        a = x;
        return a;
    }
    m(x,y) { x = id(y); }
}