summaryrefslogtreecommitdiffstats
path: root/src/test/ui/wf/wf-complex-assoc-type.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/wf/wf-complex-assoc-type.stderr')
-rw-r--r--src/test/ui/wf/wf-complex-assoc-type.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/wf/wf-complex-assoc-type.stderr b/src/test/ui/wf/wf-complex-assoc-type.stderr
new file mode 100644
index 000000000..ef613e313
--- /dev/null
+++ b/src/test/ui/wf/wf-complex-assoc-type.stderr
@@ -0,0 +1,15 @@
+error[E0277]: the trait bound `bool: MyTrait` is not satisfied
+ --> $DIR/wf-complex-assoc-type.rs:9:28
+ |
+LL | type MyItem = Option<((AssertMyTrait<bool>, u8))>;
+ | ^^^^^^^^^^^^^^^^^^^ the trait `MyTrait` is not implemented for `bool`
+ |
+note: required by a bound in `AssertMyTrait`
+ --> $DIR/wf-complex-assoc-type.rs:2:25
+ |
+LL | struct AssertMyTrait<T: MyTrait>(T);
+ | ^^^^^^^ required by this bound in `AssertMyTrait`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.