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;
|
|
|
|
|
|
|
|
#[derive(Derive)] //~ ERROR field `field` of struct `Restricted` is private
|
|
|
|
struct Restricted {
|
|
|
|
pub(in restricted) field: usize, //~ visibilities can only be restricted to ancestor modules
|
|
|
|
}
|
|
|
|
|
|
|
|
mod restricted {}
|
|
|
|
|
|
|
|
fn main() {}
|