rust/compiler/rustc_resolve
Matthias Krüger a4adc005a1
Rollup merge of #139127 - compiler-errors:prim-ty-hack, r=oli-obk
Fix up partial res of segment in primitive resolution hack

There is a hack in the resolver:

```
// In `a(::assoc_item)*` `a` cannot be a module. If `a` does resolve to a module we
// don't report an error right away, but try to fallback to a primitive type.
```

This fixes up the resolution for primitives which would otherwise resolve to a module, but we weren't also updating the res of the path segment, leading to weird diagnostics.

We explicitly call `self.r.partial_res_map.insert` instead of `record_partial_res` b/c we have recorded a partial res already, and we specifically want to override it.

cc https://github.com/rust-lang/rust/issues/139095#issuecomment-2764371934
2025-04-14 18:15:30 +02:00
..
src Rollup merge of #139127 - compiler-errors:prim-ty-hack, r=oli-obk 2025-04-14 18:15:30 +02:00
Cargo.toml Avoid a reverse map that is only used in diagnostics paths 2025-04-11 09:33:38 +00:00
messages.ftl Allow builtin macros to be used more than once. 2025-03-19 14:12:47 +01:00