Revision ddf944072a234d59407d02b0dd7fb7138ec0dffd authored by Tim Holy on 25 February 2021, 17:07:56 UTC, committed by KristofferC on 02 March 2021, 07:20:21 UTC
This fixes the following:

```
julia> struct Symmetric{T,S<:AbstractMatrix{<:T}} <: AbstractMatrix{T}
           data::S
           uplo::Char
       end

julia> struct Symmetric{T,S<:AbstractMatrix{<:T}} <: AbstractMatrix{T}
           data::S
           uplo::Char
       end
ERROR: invalid redefinition of constant Symmetric
```

`Core._equiv_typedef` returns false which ends up triggering the error.

(cherry picked from commit 6968e47fa6fff0d12de310103961d70299b7c237)
1 parent cc4f236
History
File Mode Size
docs
src
test
Project.toml -rw-r--r-- 274 bytes

back to top