2019-03-11 19:49:17 -05:00
|
|
|
// aux-build:issue-50493.rs
|
2018-05-12 14:04:44 -05:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate issue_50493;
|
|
|
|
|
2020-10-16 18:28:11 -05:00
|
|
|
#[derive(Derive)]
|
2018-05-12 14:04:44 -05:00
|
|
|
struct Restricted {
|
|
|
|
pub(in restricted) field: usize, //~ visibilities can only be restricted to ancestor modules
|
|
|
|
}
|
|
|
|
|
|
|
|
mod restricted {}
|
|
|
|
|
|
|
|
fn main() {}
|