summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-inherent-types/dispatch-on-self-type-2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/associated-inherent-types/dispatch-on-self-type-2.stderr')
-rw-r--r--tests/ui/associated-inherent-types/dispatch-on-self-type-2.stderr19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/associated-inherent-types/dispatch-on-self-type-2.stderr b/tests/ui/associated-inherent-types/dispatch-on-self-type-2.stderr
new file mode 100644
index 000000000..c9a48872a
--- /dev/null
+++ b/tests/ui/associated-inherent-types/dispatch-on-self-type-2.stderr
@@ -0,0 +1,19 @@
+error[E0308]: mismatched types
+ --> $DIR/dispatch-on-self-type-2.rs:15:44
+ |
+LL | let _: Parameterized<(), ()>::Output = String::new();
+ | ----------------------------- ^^^^^^^^^^^^^ expected `bool`, found `String`
+ | |
+ | expected due to this
+
+error[E0308]: mismatched types
+ --> $DIR/dispatch-on-self-type-2.rs:16:47
+ |
+LL | let _: Parameterized<bool, u32>::Result = ();
+ | -------------------------------- ^^ expected `u32`, found `()`
+ | |
+ | expected due to this
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0308`.