about summary refs log tree commit diff
path: root/tests/ui/asm/parse-error.stderr
AgeCommit message (Collapse)AuthorLines
2025-05-27move asm parsing code into `rustc_parse`Folkert de Vries-8/+8
2025-05-18delay error for unsupported optionsFolkert de Vries-33/+21
2025-02-10Show diff suggestion format on verbose replacementEsteban Küber-10/+15
``` 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-08-13stabilize `asm_const`Folkert-72/+72
2024-07-28improve error message when global asm uses inline asm operandsFolkert-5/+35
2024-07-25improve error message when `global_asm!` uses `asm!` optionsFolkert-20/+38
2024-07-11Account for `let foo = expr`; to suggest `const foo: Ty = expr;`Esteban Küber-10/+10
2024-07-11Use verbose style when suggesting changing `const` with `let`Esteban Küber-15/+25
2024-02-24Add tests for asm gotoGary Guo-5/+11
2023-06-16fix ICE on specific malformed asm clobber_abiasquared31415-0/+412