We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dce8ca commit e9833edCopy full SHA for e9833ed
src/array.jl
@@ -45,7 +45,7 @@ function explain_eltype(@nospecialize(T), depth=0; maxdepth=10)
45
msg = " "^depth * "$T is a mutable type\n"
46
elseif hasfieldcount(T)
47
msg = " "^depth * "$T is a struct that's not allocated inline\n"
48
- for U in fieldtypes(dt)
+ for U in fieldtypes(T)
49
if !Base.allocatedinline(U)
50
msg *= explain_nonisbits(U, depth+1)
51
end
0 commit comments