-
Notifications
You must be signed in to change notification settings - Fork 971
Closed
Labels
C-bugCategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICECategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICE
Description
Example from Visibility and Privacy in the reference:
Before
pub mod outer_mod {
pub mod inner_mod {
pub(in outer_mod) fn outer_mod_visible_fn() {}
pub(super) fn super_mod_visible_fn() {}
pub(self) fn inner_mod_visible_fn() {}
}
}After
pub mod outer_mod {
pub mod inner_mod {
pub(in outer_mod) fn outer_mod_visible_fn() )
{
}
pub(super) fn super_mod_visible_fn() )
{
}
pub(self) fn inner_mod_visible_fn() )
{
}
}
}version: 0.3.6-nightly (dfc67a5d 2018-01-26)
Metadata
Metadata
Assignees
Labels
C-bugCategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICECategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICE