mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 21:47:36 +00:00
Fix #31706
This commit is contained in:
parent
57c357d891
commit
bf3ff77ec8
@ -710,7 +710,7 @@ impl<'a, 'tcx> PrivacyVisitor<'a, 'tcx> {
|
|||||||
NamedField(name) => format!("field `{}` of {} is private",
|
NamedField(name) => format!("field `{}` of {} is private",
|
||||||
name, struct_desc),
|
name, struct_desc),
|
||||||
UnnamedField(idx) => format!("field #{} of {} is private",
|
UnnamedField(idx) => format!("field #{} of {} is private",
|
||||||
idx + 1, struct_desc),
|
idx, struct_desc),
|
||||||
};
|
};
|
||||||
span_err!(self.tcx.sess, span, E0451,
|
span_err!(self.tcx.sess, span, E0451,
|
||||||
"{}", &msg[..]);
|
"{}", &msg[..]);
|
||||||
|
@ -63,25 +63,25 @@ fn this_crate() {
|
|||||||
let c = a::C(2, 3); //~ ERROR: cannot invoke tuple struct constructor
|
let c = a::C(2, 3); //~ ERROR: cannot invoke tuple struct constructor
|
||||||
let d = a::D(4);
|
let d = a::D(4);
|
||||||
|
|
||||||
let a::A(()) = a; //~ ERROR: field #1 of struct `a::A` is private
|
let a::A(()) = a; //~ ERROR: field #0 of struct `a::A` is private
|
||||||
let a::A(_) = a;
|
let a::A(_) = a;
|
||||||
match a { a::A(()) => {} } //~ ERROR: field #1 of struct `a::A` is private
|
match a { a::A(()) => {} } //~ ERROR: field #0 of struct `a::A` is private
|
||||||
match a { a::A(_) => {} }
|
match a { a::A(_) => {} }
|
||||||
|
|
||||||
let a::B(_) = b;
|
let a::B(_) = b;
|
||||||
let a::B(_b) = b; //~ ERROR: field #1 of struct `a::B` is private
|
let a::B(_b) = b; //~ ERROR: field #0 of struct `a::B` is private
|
||||||
match b { a::B(_) => {} }
|
match b { a::B(_) => {} }
|
||||||
match b { a::B(_b) => {} } //~ ERROR: field #1 of struct `a::B` is private
|
match b { a::B(_b) => {} } //~ ERROR: field #0 of struct `a::B` is private
|
||||||
match b { a::B(1) => {} a::B(_) => {} } //~ ERROR: field #1 of struct `a::B` is private
|
match b { a::B(1) => {} a::B(_) => {} } //~ ERROR: field #0 of struct `a::B` is private
|
||||||
|
|
||||||
let a::C(_, _) = c;
|
let a::C(_, _) = c;
|
||||||
let a::C(_a, _) = c;
|
let a::C(_a, _) = c;
|
||||||
let a::C(_, _b) = c; //~ ERROR: field #2 of struct `a::C` is private
|
let a::C(_, _b) = c; //~ ERROR: field #1 of struct `a::C` is private
|
||||||
let a::C(_a, _b) = c; //~ ERROR: field #2 of struct `a::C` is private
|
let a::C(_a, _b) = c; //~ ERROR: field #1 of struct `a::C` is private
|
||||||
match c { a::C(_, _) => {} }
|
match c { a::C(_, _) => {} }
|
||||||
match c { a::C(_a, _) => {} }
|
match c { a::C(_a, _) => {} }
|
||||||
match c { a::C(_, _b) => {} } //~ ERROR: field #2 of struct `a::C` is private
|
match c { a::C(_, _b) => {} } //~ ERROR: field #1 of struct `a::C` is private
|
||||||
match c { a::C(_a, _b) => {} } //~ ERROR: field #2 of struct `a::C` is private
|
match c { a::C(_a, _b) => {} } //~ ERROR: field #1 of struct `a::C` is private
|
||||||
|
|
||||||
let a::D(_) = d;
|
let a::D(_) = d;
|
||||||
let a::D(_d) = d;
|
let a::D(_d) = d;
|
||||||
@ -101,30 +101,30 @@ fn xcrate() {
|
|||||||
let c = other::C(2, 3); //~ ERROR: cannot invoke tuple struct constructor
|
let c = other::C(2, 3); //~ ERROR: cannot invoke tuple struct constructor
|
||||||
let d = other::D(4);
|
let d = other::D(4);
|
||||||
|
|
||||||
let other::A(()) = a; //~ ERROR: field #1 of struct `other::A` is private
|
let other::A(()) = a; //~ ERROR: field #0 of struct `other::A` is private
|
||||||
let other::A(_) = a;
|
let other::A(_) = a;
|
||||||
match a { other::A(()) => {} }
|
match a { other::A(()) => {} }
|
||||||
//~^ ERROR: field #1 of struct `other::A` is private
|
//~^ ERROR: field #0 of struct `other::A` is private
|
||||||
match a { other::A(_) => {} }
|
match a { other::A(_) => {} }
|
||||||
|
|
||||||
let other::B(_) = b;
|
let other::B(_) = b;
|
||||||
let other::B(_b) = b; //~ ERROR: field #1 of struct `other::B` is private
|
let other::B(_b) = b; //~ ERROR: field #0 of struct `other::B` is private
|
||||||
match b { other::B(_) => {} }
|
match b { other::B(_) => {} }
|
||||||
match b { other::B(_b) => {} }
|
match b { other::B(_b) => {} }
|
||||||
//~^ ERROR: field #1 of struct `other::B` is private
|
//~^ ERROR: field #0 of struct `other::B` is private
|
||||||
match b { other::B(1) => {} other::B(_) => {} }
|
match b { other::B(1) => {} other::B(_) => {} }
|
||||||
//~^ ERROR: field #1 of struct `other::B` is private
|
//~^ ERROR: field #0 of struct `other::B` is private
|
||||||
|
|
||||||
let other::C(_, _) = c;
|
let other::C(_, _) = c;
|
||||||
let other::C(_a, _) = c;
|
let other::C(_a, _) = c;
|
||||||
let other::C(_, _b) = c; //~ ERROR: field #2 of struct `other::C` is private
|
let other::C(_, _b) = c; //~ ERROR: field #1 of struct `other::C` is private
|
||||||
let other::C(_a, _b) = c; //~ ERROR: field #2 of struct `other::C` is private
|
let other::C(_a, _b) = c; //~ ERROR: field #1 of struct `other::C` is private
|
||||||
match c { other::C(_, _) => {} }
|
match c { other::C(_, _) => {} }
|
||||||
match c { other::C(_a, _) => {} }
|
match c { other::C(_a, _) => {} }
|
||||||
match c { other::C(_, _b) => {} }
|
match c { other::C(_, _b) => {} }
|
||||||
//~^ ERROR: field #2 of struct `other::C` is private
|
//~^ ERROR: field #1 of struct `other::C` is private
|
||||||
match c { other::C(_a, _b) => {} }
|
match c { other::C(_a, _b) => {} }
|
||||||
//~^ ERROR: field #2 of struct `other::C` is private
|
//~^ ERROR: field #1 of struct `other::C` is private
|
||||||
|
|
||||||
let other::D(_) = d;
|
let other::D(_) = d;
|
||||||
let other::D(_d) = d;
|
let other::D(_d) = d;
|
||||||
|
Loading…
Reference in New Issue
Block a user