Skip to content

Commit 339fa31

Browse files
author
Lukas Markeffsky
committed
fix cycle error for "use constructor" suggestion
1 parent 2746748 commit 339fa31

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

compiler/rustc_resolve/src/late/diagnostics.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -1755,11 +1755,8 @@ impl<'a: 'ast, 'ast, 'tcx> LateResolutionVisitor<'a, '_, 'ast, 'tcx> {
17551755
.filter_map(|item| {
17561756
// Only assoc fns that return `Self`
17571757
let fn_sig = self.r.tcx.fn_sig(item.def_id).skip_binder();
1758-
let ret_ty = fn_sig.output();
1759-
let ret_ty = self
1760-
.r
1761-
.tcx
1762-
.normalize_erasing_late_bound_regions(ty::ParamEnv::reveal_all(), ret_ty);
1758+
// Don't normalize the return type, because that can cause cycle errors.
1759+
let ret_ty = fn_sig.output().skip_binder();
17631760
let ty::Adt(def, _args) = ret_ty.kind() else {
17641761
return None;
17651762
};
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// aux-build:suggest-constructor-cycle-error.rs
2-
//~^ cycle detected when getting the resolver for lowering [E0391]
32

43
// Regression test for https://github.com/rust-lang/rust/issues/119625
54

65
extern crate suggest_constructor_cycle_error as a;
76

87
const CONST_NAME: a::Uuid = a::Uuid(());
8+
//~^ ERROR: cannot initialize a tuple struct which contains private fields [E0423]
99

1010
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
error[E0391]: cycle detected when getting the resolver for lowering
1+
error[E0423]: cannot initialize a tuple struct which contains private fields
2+
--> $DIR/suggest-constructor-cycle-error.rs:7:29
23
|
3-
= note: ...which requires normalizing `[u8; suggest_constructor_cycle_error::::m::{impl#0}::encode_buffer::{constant#0}]`...
4-
note: ...which requires resolving instance `suggest_constructor_cycle_error::m::Uuid::encode_buffer::{constant#0}`...
5-
--> $DIR/auxiliary/suggest-constructor-cycle-error.rs:5:40
4+
LL | const CONST_NAME: a::Uuid = a::Uuid(());
5+
| ^^^^^^^
66
|
7-
LL | pub fn encode_buffer() -> [u8; LENGTH] {
8-
| ^^^^^^
9-
= note: ...which requires calculating the lang items map...
10-
= note: ...which again requires getting the resolver for lowering, completing the cycle
11-
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information
7+
note: constructor is not visible here due to private fields
8+
--> $DIR/auxiliary/suggest-constructor-cycle-error.rs:2:21
9+
|
10+
LL | pub struct Uuid(());
11+
| ^^ private field
1212

1313
error: aborting due to 1 previous error
1414

15-
For more information about this error, try `rustc --explain E0391`.
15+
For more information about this error, try `rustc --explain E0423`.

0 commit comments

Comments
 (0)