This crashes at runtime:
for p in @["abc", "123"]:
var testA = @["a", "b", "c"]
echo("Minifying...") # not needed, but error points to this line when really it's because of the mitems iterator.
for l in testA.mitems:
echo(l)
# no mutation needed, testA.items is fine, but mitems crashes
This crashes at runtime: