]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/const-underscore.rs
Fix problem noticed in PR106859 with char -> u8 suggestion
[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 };