]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/const-underscore.rs
Rollup merge of #107773 - Mark-Simulacrum:rename-auto-template, r=estebank
[rust.git] / tests / rustdoc / const-underscore.rs
1 // compile-flags: --document-private-items
2
3 // @!has const_underscore/constant._.html
4 const _: () = {
5     #[no_mangle]
6     extern "C" fn implementation_detail() {}
7 };