mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00:00
14 lines
242 B
Rust
14 lines
242 B
Rust
//@ proc-macro: issue-50493.rs
|
|
|
|
#[macro_use]
|
|
extern crate issue_50493;
|
|
|
|
#[derive(Derive)]
|
|
struct Restricted {
|
|
pub(in restricted) field: usize, //~ visibilities can only be restricted to ancestor modules
|
|
}
|
|
|
|
mod restricted {}
|
|
|
|
fn main() {}
|