Uh oh!
There was an error while loading. Please reload this page.
fluent: mandate slug names to be prefixed by crate name - #100675
Conversation
rust-highfive
commented
Aug 17, 2022
r? @oli-obk (rust-highfive has picked a reviewer for you, use r? to override) |
Xiretza
commented
Aug 17, 2022
r? @davidtwco |
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as resolved.
This comment was marked as resolved.
6a8b9a8 to
732186aCompareExample error before: error: name `generic_does_not_live_long_enough` does not start with the crate name --> compiler/rustc_error_messages/src/lib.rs:33:17 | 33 | borrowck => "../locales/en-US/borrowck.ftl", | ^^^^^^^^ | = help: prepend `borrowck_` to the slug name: `borrowck_generic_does_not_live_long_enough` after: error: name `generic_does_not_live_long_enough` does not start with the crate name --> compiler/rustc_error_messages/src/lib.rs:33:17 | 33 | borrowck => "../locales/en-US/borrowck.ftl", | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: prepend `borrowck_` to the slug name: `borrowck_generic_does_not_live_long_enough`
This comment was marked as resolved.
This comment was marked as resolved.
732186a to
0c7da94Comparerustbot
commented
Aug 22, 2022
cc @davidtwco, @compiler-errors, @JohnTitor, @estebank, @TaKO8Ki
cc @davidtwco, @compiler-errors, @JohnTitor, @estebank, @TaKO8Ki |
davidtwco
commented
Aug 22, 2022
@bors r+ rollup=never (there's a lot of translation pull requests right now, this could cause those to fail, so let's avoid a rollup) |
bors
commented
Aug 22, 2022
bors
commented
Aug 23, 2022
⌛ Testing commit 0c7da94 with merge ffca88de1637a226dca4fa4f143662c3fe1cc92f... |
bors
commented
Aug 23, 2022
💔 Test failed - checks-actions |
This comment was marked as resolved.
This comment was marked as resolved.
davidtwco
commented
Aug 23, 2022
@bors retry - seems spurious |
bors
commented
Aug 23, 2022
⌛ Testing commit 0c7da94 with merge 530186becedf0e3662ef19b2e20b1db5fa14384f... |
bors
commented
Aug 23, 2022
💥 Test timed out |
davidtwco
commented
Aug 23, 2022
@bors retry |
rust-log-analyzer
commented
Aug 23, 2022
bors
commented
Aug 23, 2022
bors
commented
Aug 24, 2022
☀️ Test successful - checks-actions |
rust-timer
commented
Aug 24, 2022
Finished benchmarking commit (87991d5): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Footnotes |
This is currently only convention, but not actively checked for.
Additionally, improve error messages to highlight the path of the offending fluent file rather than the identifier preceding it.
This will conflict with #100671, so I'll leave it as draft until that's merged.