...
Future plan that I consider the biggest bang-for-the-buck for this idea: In Clojure core and all modular contrib libraries, make it the default to build with reflection warnings enabled. After type-hinting the ones away that can be easily and safely done so, wrap the rest of the expressions causing the warnings in (known-reflection ...) so they no longer cause warnings, but are clearly marked in the source code as such. From that point forward, every time a developer adds a new reflection warning, they will find out on the very next build attempt, and it will likely get fixed, or marked with (known-reflection ...), quite soon afterwards. Such changes in Clojure core and contrib would be done in separate commits after this change was in.
Proposal A: new special form compile-time-let
...