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, 0 insertions, 15 deletions
diff --git a/src/test/ui/wf/wf-complex-assoc-type.stderr b/src/test/ui/wf/wf-complex-assoc-type.stderr
deleted file mode 100644
index ef613e313..000000000
--- a/src/test/ui/wf/wf-complex-assoc-type.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-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`.