X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Ftest%2Fcompile-fail%2Fstruct-field-privacy.rs;h=2ff48b73e294c415bcb02f51f05046d8dbb02f95;hb=46dcffd05b46e62c27629f4231fc794e94e614a8;hp=a1b6b9a744c72c56da60b731c7d86318f7ea5044;hpb=a3b13610c5b93d9ada072471a001a5613df6a960;p=rust.git diff --git a/src/test/compile-fail/struct-field-privacy.rs b/src/test/compile-fail/struct-field-privacy.rs index a1b6b9a744c..2ff48b73e29 100644 --- a/src/test/compile-fail/struct-field-privacy.rs +++ b/src/test/compile-fail/struct-field-privacy.rs @@ -28,7 +28,7 @@ pub struct B { } fn test(a: A, b: inner::A, c: inner::B, d: xc::A, e: xc::B) { - //~^ ERROR: type `A` is private + //~^ ERROR: struct `A` is private //~^^ ERROR: struct `A` is private a.a; @@ -37,11 +37,11 @@ fn test(a: A, b: inner::A, c: inner::B, d: xc::A, e: xc::B) { c.a; c.b; //~ ERROR: field `b` of struct `inner::B` is private - d.a; //~ ERROR: field `a` of struct `struct_field_privacy::A` is private + d.a; //~ ERROR: field `a` of struct `xc::A` is private d.b; e.a; - e.b; //~ ERROR: field `b` of struct `struct_field_privacy::B` is private + e.b; //~ ERROR: field `b` of struct `xc::B` is private } fn main() {}