about summary refs log tree commit diff
path: root/compiler/rustc_ast_lowering/messages.ftl
AgeCommit message (Collapse)AuthorLines
2023-12-03Disallow arm bodies on never patternsNadrieril-0/+5
2023-12-03Disallow guards on never patternsNadrieril-0/+4
2023-12-03Disallow an arm without a body (except for never patterns)Nadrieril-0/+4
Parsing now accepts a match arm without a body, so we must make sure to only accept that if the pattern is a never pattern.
2023-10-20s/generator/coroutine/Oli Scherer-5/+5
2023-10-13Deprecate E0706Michael Goulet-6/+0
2023-10-04Tweak wording of E0562Esteban Küber-1/+1
Fix #80476.
2023-09-12cleanup on messagesyukang-4/+0
2023-05-25Ensure Fluent messages are in alphabetical orderclubby789-84/+84
2023-03-28Add `(..)` syntax for RTNMichael Goulet-0/+4
2023-03-28Add tests and error messagesMichael Goulet-0/+8
2023-03-11Simplify message pathsest31-0/+141
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