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
Edge invalidations of the form
```julia
Package InvalidA:
module InvalidA
f(::Integer) = 1
invokesfs(x) = invoke(f, Tuple{Signed}, x)
end
Package InvalidB:
module InvalidB
using InvalidA
InvalidA.invokesfs(1) # precompile
end
```
used as
```julia
using PkgA
InvalidA.f(::Signed) = 4
using PkgB
```
did not formerly attribute a "cause":
```
...
Tuple{typeof(InvalidA.f), Signed}
"insert_backedges_callee"
CodeInstance for MethodInstance for InvalidA.invokesfs(::Int64)
nothing
...
```
This fills in the new method that replaced the previous dispatch.
---------
Co-authored-by: Jameson Nash <[email protected]>
0 commit comments