Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change TypeVars in UnionAlls to print as var"" syntax (#34888)
This changes unnamed type variables to print as valid syntax, via the `var""` printing macro. For example, before this commit, `Vector{<:Bool}` printed as a non-syntactic string: ```julia julia> Vector{<:Bool} Array{#s16,1} where #s16<:Bool ``` And now it prints as a valid, syntactic expression: ```julia julia> Vector{<:Bool} Array{var"#s46",1} where var"#s46"<:Bool ```
- Loading branch information