summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr')
-rw-r--r--src/test/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/test/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr b/src/test/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr
new file mode 100644
index 000000000..fb0a6f70b
--- /dev/null
+++ b/src/test/ui/suggestions/fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr
@@ -0,0 +1,44 @@
+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 | fn foo() -> impl T<O=()> { S }
+ | --- consider calling this function
+...
+LL | bar(foo);
+ | --- ^^^ the trait `T` is not implemented for `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 the 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 | let closure = || S;
+ | -- consider calling this closure
+LL | bar(closure);
+ | --- ^^^^^^^ the trait `T` is not implemented for `[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 the closure
+ |
+LL | bar(closure());
+ | ++
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0277`.