Fix stack overflow with recursive associated types#122366
Fix stack overflow with recursive associated types#122366bors merged 1 commit intorust-lang:masterfrom
Conversation
|
r? @wesleywiser rustbot has assigned @wesleywiser. Use r? to explicitly pick a reviewer |
|
|
||
| if !self.seen.insert(assoc.def_id.expect_local()) { | ||
| return; | ||
| } |
There was a problem hiding this comment.
one thought: if we first encounter <Self as Trait>::Gat<u32> which normalizes to <u32 as Trait>::Atpit and then later encounter <Self as Trait>::Gat<Self>, which normalizes to <Self as Trait>::Atpit, this change causes us to not define Atpit anymore, does it?
While it seems fine to not support that for now, I would like to have an open issue/test for that
There was a problem hiding this comment.
oof right, we had this issue with structs before -.- I knew why I didn't want this check. Maybe I should move the recursion check even later
…kingjubilee Rollup of 12 pull requests Successful merges: - rust-lang#121754 ([bootstrap] Move the `split-debuginfo` setting to the per-target section) - rust-lang#121953 (Add tests for the generated assembly of mask related simd instructions.) - rust-lang#122081 (validate `builder::PATH_REMAP`) - rust-lang#122245 (Detect truncated DepGraph files) - rust-lang#122354 (bootstrap: Don't eagerly format verbose messages) - rust-lang#122355 (rustdoc: fix up old test) - rust-lang#122363 (tests: Add ui/attributes/unix_sigpipe/unix_sigpipe-str-list.rs) - rust-lang#122366 (Fix stack overflow with recursive associated types) - rust-lang#122377 (Fix discriminant_kind copy paste from the pointee trait case) - rust-lang#122378 (Properly rebuild rustbooks) - rust-lang#122380 (Fix typo in lib.rs of proc_macro) - rust-lang#122381 (llvm-wrapper: adapt for LLVM API changes) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#122366 - oli-obk:opaques_defined_by_overflow, r=lcnr Fix stack overflow with recursive associated types fixes rust-lang#122364
fixes #122364