rust/tests/rustdoc/const-underscore.rs

8 lines
168 B
Rust
Raw Normal View History

//@ compile-flags: --document-private-items
2020-01-04 20:35:23 +00:00
//@ !has const_underscore/constant._.html
2020-01-04 20:35:23 +00:00
const _: () = {
#[no_mangle]
extern "C" fn implementation_detail() {}
};