]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/const-underscore.rs
Auto merge of #67312 - cuviper:clone-box-slice, r=SimonSapin
[rust.git] / src / test / 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 };