```nim import strutils var search = "" replacement = "abc" echo "string".multiReplace(search, replacement) # EDIT(@timotheecour ) I think this should be: `echo "string".multiReplace(("", "abc"))` ``` Crash output ``` strutils.nim multiReplace SIGSEGV: Illegal storage access. (Attempt to read from nil?) ``` This works on 0.18.0 but fails on 0.19.0 and #head.