summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/check-wf-on-non-defaulted-rpitit.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/impl-trait/in-trait/check-wf-on-non-defaulted-rpitit.stderr')
-rw-r--r--tests/ui/impl-trait/in-trait/check-wf-on-non-defaulted-rpitit.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ui/impl-trait/in-trait/check-wf-on-non-defaulted-rpitit.stderr b/tests/ui/impl-trait/in-trait/check-wf-on-non-defaulted-rpitit.stderr
new file mode 100644
index 000000000..dee87d082
--- /dev/null
+++ b/tests/ui/impl-trait/in-trait/check-wf-on-non-defaulted-rpitit.stderr
@@ -0,0 +1,16 @@
+error[E0277]: `impl Sized` cannot be sent between threads safely
+ --> $DIR/check-wf-on-non-defaulted-rpitit.rs:6:17
+ |
+LL | fn bar() -> Wrapper<impl Sized>;
+ | ^^^^^^^^^^^^^^^^^^^ `impl Sized` cannot be sent between threads safely
+ |
+ = help: the trait `Send` is not implemented for `impl Sized`
+note: required by a bound in `Wrapper`
+ --> $DIR/check-wf-on-non-defaulted-rpitit.rs:3:19
+ |
+LL | struct Wrapper<G: Send>(G);
+ | ^^^^ required by this bound in `Wrapper`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.