about summary refs log tree commit diff
path: root/src/test/ui/methods
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2022-06-19 15:10:42 -0700
committerMichael Goulet <michael@errs.io>2022-06-19 15:10:42 -0700
commit4400a26e31363acd7427d47f7dff33da18419fcf (patch)
treefc2bb4173e81151a9b9665276286365966adbd37 /src/test/ui/methods
parent2b646bd533e8a20c06a71d0b7837e15eb4c79fa8 (diff)
downloadrust-4400a26e31363acd7427d47f7dff33da18419fcf.tar.gz
rust-4400a26e31363acd7427d47f7dff33da18419fcf.zip
Make missing argument placeholder more obvious that it's a placeholder
Diffstat (limited to 'src/test/ui/methods')
-rw-r--r--src/test/ui/methods/method-call-err-msg.stderr12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/test/ui/methods/method-call-err-msg.stderr b/src/test/ui/methods/method-call-err-msg.stderr
index 53e582f7f13..95edee6ad23 100644
--- a/src/test/ui/methods/method-call-err-msg.stderr
+++ b/src/test/ui/methods/method-call-err-msg.stderr
@@ -27,8 +27,8 @@ LL |     fn one(self, _: isize) -> Foo { self }
    |        ^^^ ----  --------
 help: provide the argument
    |
-LL |      .one({isize})
-   |       ~~~~~~~~~~~~
+LL |      .one(/* isize */)
+   |       ~~~~~~~~~~~~~~~~
 
 error[E0061]: this function takes 2 arguments but 1 argument was supplied
   --> $DIR/method-call-err-msg.rs:15:7
@@ -43,8 +43,8 @@ LL |     fn two(self, _: isize, _: isize) -> Foo { self }
    |        ^^^ ----  --------  --------
 help: provide the argument
    |
-LL |      .two(0, {isize});
-   |       ~~~~~~~~~~~~~~~
+LL |      .two(0, /* isize */);
+   |       ~~~~~~~~~~~~~~~~~~~
 
 error[E0599]: `Foo` is not an iterator
   --> $DIR/method-call-err-msg.rs:19:7
@@ -89,8 +89,8 @@ LL |     fn three<T>(self, _: T, _: T, _: T) -> Foo { self }
    |        ^^^^^    ----  ----  ----  ----
 help: provide the arguments
    |
-LL |     y.three::<usize>({usize}, {usize}, {usize});
-   |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+LL |     y.three::<usize>(/* usize */, /* usize */, /* usize */);
+   |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 error: aborting due to 5 previous errors