summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-72076.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-72076.stderr')
-rw-r--r--tests/ui/issues/issue-72076.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-72076.stderr b/tests/ui/issues/issue-72076.stderr
new file mode 100644
index 000000000..b942cf75b
--- /dev/null
+++ b/tests/ui/issues/issue-72076.stderr
@@ -0,0 +1,14 @@
+error[E0308]: mismatched types
+ --> $DIR/issue-72076.rs:3:23
+ |
+LL | fn f() -> Self::S {}
+ | ^^ expected associated type, found `()`
+ |
+ = note: expected associated type `<Self as X>::S`
+ found unit type `()`
+ = help: consider constraining the associated type `<Self as X>::S` to `()` or calling a method that returns `<Self as X>::S`
+ = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0308`.