https://issues.dlang.org/show_bug.cgi?id=9275
Nemanja Boric <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Nemanja Boric <[email protected]> --- Looks like this has been fixed in the meantime: ``` import core.memory; void main() { // this will work fine GC.removeRoot(null); //this will boom once liner search fails to find '13' among roots //It does the same with any sane pointer that isn't a root GC.removeRoot(cast(void*)13); } ``` --
