// @strict: true type Cb = {noAlias: () => T}["noAlias"]; // `"noAlias"` here prevents an alias symbol from being made // which means the comparison will definitely be structural, rather than by variance declare const x: Cb>>>; // one more layer of `Cb` adn we'd get a `true` from the deeply-nested symbol check declare let y: Cb>>>; y = x;