]> git.proxmox.com Git - rustc.git/blame - src/test/ui/structs/struct-variant-privacy-xc.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / structs / struct-variant-privacy-xc.rs
CommitLineData
1a4d82fc
JJ
1// aux-build:struct_variant_privacy.rs
2extern crate struct_variant_privacy;
223e47cc 3
6a06907d
XL
4fn f(b: struct_variant_privacy::Bar) {
5 //~^ ERROR enum `Bar` is private
1a4d82fc 6 match b {
54a0048b 7 struct_variant_privacy::Bar::Baz { a: _a } => {} //~ ERROR enum `Bar` is private
223e47cc 8 }
223e47cc
LB
9}
10
11fn main() {}