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