This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-05-03 05:27:36 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
901b340c1f
rust
/
tests
/
ui
/
resolve
/
auxiliary
/
privacy-struct-ctor.rs
10 lines
119 B
Rust
Raw
Normal View
History
Unescape
Escape
Privatize constructors of tuple structs with private fields
2017-01-08 21:21:35 +00:00
pub
mod
m
{
pub
struct
S
(
u8
)
;
pub
mod
n
{
Update syntax for `pub(restricted)`
2017-03-07 23:50:13 +00:00
pub
(
in
m
)
struct
Z
(
pub
(
in
m
::
n
)
u8
)
;
Privatize constructors of tuple structs with private fields
2017-01-08 21:21:35 +00:00
}
}
pub
use
m
::
S
;
Reference in New Issue
Copy Permalink