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
trampolines
.gitignore -rw-r--r-- 33 bytes
Makefile -rw-r--r-- 7.1 KB
jl_exports.h -rw-r--r-- 1.1 KB
loader.h -rw-r--r-- 3.2 KB
loader_exe.c -rw-r--r-- 1.7 KB
loader_lib.c -rw-r--r-- 7.3 KB
loader_win_utils.c -rw-r--r-- 5.1 KB

back to top