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