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
167 B
Rust
Raw Normal View History

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