Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
privacy
/
pub-priv-dep
/
std-pub.rs
blob: 348e8d10735a34c93ffa16b8eb7374350dd74222 [
file
] [
log
] [
blame
]
// 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
()
{}