summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-19883.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/associated-types/issue-19883.stderr')
-rw-r--r--src/test/ui/associated-types/issue-19883.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/associated-types/issue-19883.stderr b/src/test/ui/associated-types/issue-19883.stderr
new file mode 100644
index 000000000..bd6a86b74
--- /dev/null
+++ b/src/test/ui/associated-types/issue-19883.stderr
@@ -0,0 +1,15 @@
+error[E0576]: cannot find associated type `Dst` in trait `From`
+ --> $DIR/issue-19883.rs:9:30
+ |
+LL | type Output;
+ | ------------ associated type `Output` defined here
+...
+LL | <Dst as From<Self>>::Dst
+ | ^^^
+ | |
+ | not found in `From`
+ | help: maybe you meant this associated type: `Output`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0576`.