In both 1.11rc and nightly: ```julia julia> using InlineStrings julia> a = Base.AnnotatedString("annotated", [(1:9, :label => 1)]) julia> b = InlineString("abc") # correct: julia> a * b "annotatedabc" # wrong: julia> join([a,b]) "annotated\x03cba" # correct: julia> join([String(a), b]) "annotatedabc" ```