1
Fork 0
rust/tests/ui/proc-macro/issue-50493.rs
2025-04-08 23:06:31 +03:00

13 lines
248 B
Rust

//@ proc-macro: issue-50493.rs
#[macro_use]
extern crate issue_50493;
#[derive(Derive)]
struct Restricted {
pub(in restricted) field: usize, //~ ERROR visibilities can only be restricted to ancestor modules
}
mod restricted {}
fn main() {}