rust/tests/rustdoc/const-underscore.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
168 B
Rust
Raw Normal View History

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