2019-01-13 21:33:06 -06:00
|
|
|
// The 'std' crates should always be implicitly public,
|
|
|
|
// without having to pass any compiler arguments
|
|
|
|
|
|
|
|
// run-pass
|
|
|
|
|
2019-01-20 21:04:22 -06:00
|
|
|
#![deny(exported_private_dependencies)]
|
2019-01-13 21:33:06 -06:00
|
|
|
|
|
|
|
pub struct PublicType {
|
|
|
|
pub field: Option<u8>
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|