rust/compiler/rustc_resolve
Esteban Küber 7d33094d3a Use structured suggestion when telling user about for<'a>
```
error[E0637]: `&` without an explicit lifetime name cannot be used here
  --> $DIR/E0637.rs:13:13
   |
LL |     T: Into<&u32>,
   |             ^ explicit lifetime name needed here
   |
help: consider introducing a higher-ranked lifetime here
   |
LL |     T: for<'a> Into<&'a u32>,
   |        +++++++       ++
```
2023-06-30 00:34:14 +00:00
..
src Use structured suggestion when telling user about for<'a> 2023-06-30 00:34:14 +00:00
Cargo.toml update pulldown-cmark to 0.9.3 2023-05-22 11:35:25 +02:00
messages.ftl Remove unreachable and untested suggestion for invalid span enum derive(Default) 2023-06-19 16:22:21 +01:00