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
Defining
struct MyInt <: Integer
x::Int
end
(::Type{T})(x::MyInt) where T<:Integer = T(x.x)
triggers about 830 unique method invalidations. This fixes the majority of them, but it's a pretty horrifying amount of type-annotation.
0 commit comments