You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is weird that things like join on base types give different results depending on if an stdlib has been (transitively) loaded.
The rendering of StyledStrings should probably move to Base to fix this.
The text was updated successfully, but these errors were encountered:
This is a reduction of a test in
test/strings/annotated.jl
that avoids loading StyledStrings (which now gets loaded when loading Test.jl):Running this fails with:
However, if we add
using StyledStrings
to the top, the assert does not fire.
The reason for this is type piracy in StyledStrings: JuliaLang/StyledStrings.jl#61.
It is weird that things like
join
on base types give different results depending on if an stdlib has been (transitively) loaded.The rendering of StyledStrings should probably move to Base to fix this.
The text was updated successfully, but these errors were encountered: