summaryrefslogtreecommitdiffstats
path: root/tests/ui/implied-bounds/issue-110161.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/implied-bounds/issue-110161.stderr')
-rw-r--r--tests/ui/implied-bounds/issue-110161.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/implied-bounds/issue-110161.stderr b/tests/ui/implied-bounds/issue-110161.stderr
new file mode 100644
index 000000000..9e0188694
--- /dev/null
+++ b/tests/ui/implied-bounds/issue-110161.stderr
@@ -0,0 +1,12 @@
+error[E0046]: not all trait items implemented, missing: `Ty`
+ --> $DIR/issue-110161.rs:11:1
+ |
+LL | type Ty;
+ | ------- `Ty` from trait
+...
+LL | impl LtTrait for () {
+ | ^^^^^^^^^^^^^^^^^^^ missing `Ty` in implementation
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0046`.