Uh oh!
There was an error while loading. Please reload this page.
rustc_builtin_macros: make asm mod public for rustfmt - #92147
Conversation
rust-highfive
commented
Dec 21, 2021
r? @cjgillot (rust-highfive has picked a reviewer for you, use r? to override) |
jyn514
commented
Dec 21, 2021
Hmm, I think it would be better to re-export the function in the root rather than making the whole module public. |
calebcartwright
commented
Dec 21, 2021
Well, we need the struct too. There's only 4 currently public items in that mod, so I suppose I can either re-export the 2 we need and keep the mod private, or modify the visibility on the other 2 to keep them in-crate, if there's concerns about |
2133d12 to
63c2edeComparecalebcartwright
commented
Dec 21, 2021
I've opted for the latter, but don't mind changing it if you (or anyone) feels strongly that it'd be better to do the former. Let me know |
cjgillot
commented
Dec 26, 2021
@bors r+ rollup |
bors
commented
Dec 26, 2021
📌 Commit 63c2ede has been approved by |
bors
commented
Dec 27, 2021
⌛ Testing commit 63c2ede with merge 6d68b965a62b8b3c30a546673b867578a040c0f5... |
bors
commented
Dec 27, 2021
💔 Test failed - checks-actions |
calebcartwright
commented
Dec 27, 2021
Not really sure what to make of the CI failure, seems potentially spurious so going to retry @bors retry |
rust-log-analyzer
commented
Dec 27, 2021
…askrgr Rollup of 7 pull requests Successful merges: - rust-lang#90586 (Relax priv-in-pub lint on generic bounds and where clauses of trait impls.) - rust-lang#92112 (Fix the error of checking `base_expr` twice in type_changing_struct_update) - rust-lang#92147 (rustc_builtin_macros: make asm mod public for rustfmt) - rust-lang#92161 (resolve: Minor miscellaneous cleanups from rust-lang#89059) - rust-lang#92264 (Remove `maybe_uninit_extra` feature from Vec docs) - rust-lang#92303 (Add test cases for issue rust-lang#26186) - rust-lang#92307 (Fix minor typos) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup

Follow up to #92016, as I'd completely missed that the mod we needed was internal