2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: 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 {
|
2025-06-03 10:03:42 +02:00
|
|
|
pub(in crate::restricted) field: usize, //~ ERROR visibilities can only be restricted to ancestor modules
|
2018-05-12 19:04:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mod restricted {}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|