Skip to content

Commit dcfe241

Browse files
remove warning from c when binding is ambiguous
1 parent a007e80 commit dcfe241

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

doc/src/manual/modules.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -283,14 +283,14 @@ julia> module B
283283
B
284284
```
285285

286-
The statement `using .A, .B` works, but when you try to call `f`, you get a warning
286+
The statement `using .A, .B` works, but when you try to call `f`, you get an error with a hint
287287

288288
```jldoctest module_manual
289289
julia> using .A, .B
290290
291291
julia> f
292-
WARNING: both B and A export "f"; uses of it in module Main must be qualified
293292
ERROR: UndefVarError: `f` not defined in `Main`
293+
Hint: It looks like two or more modules export different bindings with this name, resulting in ambiguity. Try explicitly importing it from a particular module, or qualifying the name with the module it should come from.
294294
```
295295

296296
Here, Julia cannot decide which `f` you are referring to, so you have to make a choice. The following solutions are commonly used:

src/module.c

-5
Original file line numberDiff line numberDiff line change
@@ -430,11 +430,6 @@ static jl_binding_t *using_resolve_binding(jl_module_t *m JL_PROPAGATES_ROOT, jl
430430
tempb = jl_get_module_binding(m, var, 1);
431431
tempbpart = jl_get_binding_partition(tempb, jl_current_task->world_age);
432432
jl_atomic_store_release(&tempbpart->restriction, encode_restriction(NULL, BINDING_KIND_FAILED));
433-
jl_printf(JL_STDERR,
434-
"WARNING: both %s and %s export \"%s\"; uses of it in module %s must be qualified\n",
435-
jl_symbol_name(owner->name),
436-
jl_symbol_name(imp->name), jl_symbol_name(var),
437-
jl_symbol_name(m->name));
438433
}
439434
return NULL;
440435
}

0 commit comments

Comments
 (0)