about summary refs log tree commit diff
path: root/compiler/rustc_ty_utils/messages.ftl
AgeCommit message (Collapse)AuthorLines
2023-10-20s/generator/coroutine/Oli Scherer-1/+1
2023-05-25Ensure Fluent messages are in alphabetical orderclubby789-34/+34
2023-05-12Use the opaque_types_defined_by query to cheaply check for whether a hidden ↵Oli Scherer-0/+8
type may be registered for an opaque type
2023-04-10Update ty_utils_never_to_any_not_supported diagnostic messageDaniPopes-1/+1
2023-04-10Fix typos in compilerDaniPopes-2/+2
2023-04-08Move SIMD layout errors to `SessionDiagnostic`Matthew Jasper-0/+8
2023-04-07Move `FnPtrAddr` error to `SessionDiagnostic`Matthew Jasper-0/+2
2023-03-11Simplify message pathsest31-0/+47
This makes it easier to open the messages file while developing on features. The commit was the result of automatted changes: for p in compiler/rustc_*; do mv $p/locales/en-US.ftl $p/messages.ftl; rmdir $p/locales; done for p in compiler/rustc_*; do sed -i "s#\.\./locales/en-US.ftl#../messages.ftl#" $p/src/lib.rs; done