rust/tests/rustdoc-ui/pub-use-primitive-document-private-items-95633.rs

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

10 lines
230 B
Rust
Raw Normal View History

//@ check-pass
//@ compile-flags: --document-private-items
// This ensures that no ICE is triggered when rustdoc is run on this code.
2024-05-21 14:28:30 -05:00
// https://github.com/rust-lang/rust/issues/95633
mod stdlib {
pub (crate) use std::i8;
}