summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr')
-rw-r--r--tests/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr b/tests/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr
new file mode 100644
index 000000000..955148315
--- /dev/null
+++ b/tests/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr
@@ -0,0 +1,39 @@
+error[E0277]: the trait bound `fn() -> impl T<O = ()> {foo}: T` is not satisfied
+ --> $DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:17:9
+ |
+LL | bar(foo);
+ | --- ^^^ the trait `T` is not implemented for fn item `fn() -> impl T<O = ()> {foo}`
+ | |
+ | required by a bound introduced by this call
+ |
+note: required by a bound in `bar`
+ --> $DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:14:16
+ |
+LL | fn bar(f: impl T<O=()>) {}
+ | ^^^^^^^ required by this bound in `bar`
+help: use parentheses to call this function
+ |
+LL | bar(foo());
+ | ++
+
+error[E0277]: the trait bound `[closure@$DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:18:19: 18:21]: T` is not satisfied
+ --> $DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:19:9
+ |
+LL | bar(closure);
+ | --- ^^^^^^^ the trait `T` is not implemented for closure `[closure@$DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:18:19: 18:21]`
+ | |
+ | required by a bound introduced by this call
+ |
+note: required by a bound in `bar`
+ --> $DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:14:16
+ |
+LL | fn bar(f: impl T<O=()>) {}
+ | ^^^^^^^ required by this bound in `bar`
+help: use parentheses to call this closure
+ |
+LL | bar(closure());
+ | ++
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0277`.