Files
rust/compiler
Jonathan Brouwer fe32c706ed Rollup merge of #156121 - thiago-fealves:suggest-collect-string, r=estebank
compiler: suggest `.collect()` when `String` is expected and `Iterator` is found

This commit adds a diagnostic suggestion to help users who forget to call `.collect()` when they have an iterator and the function or variable expects a `String`.

The logic checks if the expected type is `std::string::String` and if the found type implements the `Iterator` trait, if so the compiler provides a suggestion to add `.collect()`

Includes also a UI test to verify if the suggestion appears correctly
2026-05-17 15:52:35 +02:00
..
2026-05-07 22:22:56 +09:00
2026-05-04 16:28:58 +00:00
2026-05-04 16:28:58 +00:00
2026-05-07 20:23:37 +03:00
2026-05-12 17:09:19 +02:00
2026-05-13 20:29:15 +00:00
2026-05-11 21:32:42 +02:00
2026-05-12 21:58:50 +02:00
2026-05-11 21:32:42 +02:00
2026-05-12 21:58:50 +02:00
2026-05-12 17:09:19 +02:00
2026-05-12 21:58:50 +02:00