about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0637.stderr
AgeCommit message (Collapse)AuthorLines
2025-07-01Suggest use another lifetime specifier instead of underscore lifetimexizheyin-0/+2
Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn>
2025-02-10Show diff suggestion format on verbose replacementEsteban Küber-2/+3
``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix | LL - let _ = 2.l; LL + let _ = 2.0f64; | ```
2024-03-20make `type_flags(ReError) & HAS_ERROR`Ali MJ Al-Nasrawy-19/+1
2024-02-08Continue to borrowck even if there were previous errorsOli Scherer-1/+19
2023-06-30Use structured suggestion when telling user about `for<'a>`Esteban Küber-4/+3
``` 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-01-11Move /src/test to /testsAlbert Larsan-0/+34