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 1728ada commit 8a55a27Copy full SHA for 8a55a27
src/gf.c
@@ -1356,7 +1356,8 @@ static int check_ambiguous_visitor(jl_typemap_entry_t *oldentry, struct typemap_
1356
1357
// ok: record that this method definition is being partially replaced
1358
// (either with a real definition, or an ambiguity error)
1359
- if (shadowed) {
+ // be careful not to try to scan something from the current dump-reload though
1360
+ if (shadowed && oldentry->min_world != closure->newentry->min_world) {
1361
if (closure->shadowed == NULL) {
1362
closure->shadowed = (jl_value_t*)oldentry;
1363
}
0 commit comments