about summary refs log tree commit diff
path: root/tests/ui/pub
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2025-02-13 03:21:25 +0000
committerJubilee Young <workingjubilee@gmail.com>2025-02-14 00:44:10 -0800
commit6d71251cf9e40326461f90f8ff9a7024706aea87 (patch)
tree9632ff91f2996a68f9d9c4ebdb3f3ebf8cfa64f4 /tests/ui/pub
parentf6406dfd4efceb6f713e503aecda587304135ed9 (diff)
downloadrust-6d71251cf9e40326461f90f8ff9a7024706aea87.tar.gz
rust-6d71251cf9e40326461f90f8ff9a7024706aea87.zip
Trim suggestion parts to the subset that is purely additive
Diffstat (limited to 'tests/ui/pub')
-rw-r--r--tests/ui/pub/pub-ident-fn-or-struct.stderr2
-rw-r--r--tests/ui/pub/pub-restricted.stderr10
2 files changed, 6 insertions, 6 deletions
diff --git a/tests/ui/pub/pub-ident-fn-or-struct.stderr b/tests/ui/pub/pub-ident-fn-or-struct.stderr
index ceadc510c63..99c8e5754ef 100644
--- a/tests/ui/pub/pub-ident-fn-or-struct.stderr
+++ b/tests/ui/pub/pub-ident-fn-or-struct.stderr
@@ -7,7 +7,7 @@ LL | pub S (foo) bar
 help: if you meant to call a macro, try
    |
 LL | pub S! (foo) bar
-   |     ~~
+   |      +
 
 error: aborting due to 1 previous error
 
diff --git a/tests/ui/pub/pub-restricted.stderr b/tests/ui/pub/pub-restricted.stderr
index fc177aa2033..6c913938bb8 100644
--- a/tests/ui/pub/pub-restricted.stderr
+++ b/tests/ui/pub/pub-restricted.stderr
@@ -11,7 +11,7 @@ LL | pub (a) fn afn() {}
 help: make this visible only to module `a` with `in`
    |
 LL | pub (in a) fn afn() {}
-   |      ~~~~
+   |      ++
 
 error[E0704]: incorrect visibility restriction
   --> $DIR/pub-restricted.rs:4:6
@@ -26,7 +26,7 @@ LL | pub (b) fn bfn() {}
 help: make this visible only to module `b` with `in`
    |
 LL | pub (in b) fn bfn() {}
-   |      ~~~~
+   |      ++
 
 error[E0704]: incorrect visibility restriction
   --> $DIR/pub-restricted.rs:5:6
@@ -41,7 +41,7 @@ LL | pub (crate::a) fn cfn() {}
 help: make this visible only to module `crate::a` with `in`
    |
 LL | pub (in crate::a) fn cfn() {}
-   |      ~~~~~~~~~~~
+   |      ++
 
 error[E0704]: incorrect visibility restriction
   --> $DIR/pub-restricted.rs:22:14
@@ -56,7 +56,7 @@ LL |         pub (a) invalid: usize,
 help: make this visible only to module `a` with `in`
    |
 LL |         pub (in a) invalid: usize,
-   |              ~~~~
+   |              ++
 
 error[E0704]: incorrect visibility restriction
   --> $DIR/pub-restricted.rs:31:6
@@ -71,7 +71,7 @@ LL | pub (xyz) fn xyz() {}
 help: make this visible only to module `xyz` with `in`
    |
 LL | pub (in xyz) fn xyz() {}
-   |      ~~~~~~
+   |      ++
 
 error[E0742]: visibilities can only be restricted to ancestor modules
   --> $DIR/pub-restricted.rs:23:17