rust/tests/ui/privacy/pub-priv-dep/std-pub.rs
2023-01-11 09:32:08 +00:00

13 lines
226 B
Rust

// The 'std' crates should always be implicitly public,
// without having to pass any compiler arguments
// run-pass
#![deny(exported_private_dependencies)]
pub struct PublicType {
pub field: Option<u8>
}
fn main() {}