Skip to content

Commit 8befaba

Browse files
committed
auto merge of #14239 : alexcrichton/rust/issue-14225, r=huonw
These are taken care of with compiler errors later on, no need to spam with extra unformatted information unconditionally. Closes #14225
2 parents 1e0379f + 6959b4f commit 8befaba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc/middle/resolve.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2996,7 +2996,7 @@ impl<'a> Resolver<'a> {
29962996
Some(ref type_def) => {
29972997
match type_def.module_def {
29982998
None => {
2999-
error!("!!! (resolving module in lexical \
2999+
debug!("!!! (resolving module in lexical \
30003000
scope) module wasn't actually a \
30013001
module!");
30023002
return Failed;
@@ -3007,7 +3007,7 @@ impl<'a> Resolver<'a> {
30073007
}
30083008
}
30093009
None => {
3010-
error!("!!! (resolving module in lexical scope) module
3010+
debug!("!!! (resolving module in lexical scope) module
30113011
wasn't actually a module!");
30123012
return Failed;
30133013
}

0 commit comments

Comments
 (0)