Since https://github.com/JuliaLang/julia/issues/22193 and https://github.com/JuliaLang/julia/pull/22954 `String`s are supposed to be immutable, yet: ```jl julia> isimmutable("abc") false ``` Similarly, `Symbol`s have been immutable and `===`-comparable for ever and yet: ```jl julia> isimmutable(:abc) false ``` Pointed out by @fingofin [on discourse](https://discourse.julialang.org/t/strings-are-immutable-but-isimmutable-abc-still-returns-false-why/18180). Also potentially of interest: ```jl julia> isstructtype(String) true ```