summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-85347.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/issue-85347.stderr')
-rw-r--r--src/test/ui/suggestions/issue-85347.stderr26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/ui/suggestions/issue-85347.stderr b/src/test/ui/suggestions/issue-85347.stderr
deleted file mode 100644
index 17c1b7dc4..000000000
--- a/src/test/ui/suggestions/issue-85347.stderr
+++ /dev/null
@@ -1,26 +0,0 @@
-error[E0107]: this associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
- --> $DIR/issue-85347.rs:3:42
- |
-LL | type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
- | ^^^ expected 1 lifetime argument
- |
-note: associated type defined here, with 1 lifetime parameter: `'a`
- --> $DIR/issue-85347.rs:3:10
- |
-LL | type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
- | ^^^ --
-help: add missing lifetime argument
- |
-LL | type Bar<'a>: Deref<Target = <Self>::Bar<'a, Target = Self>>;
- | +++
-
-error[E0229]: associated type bindings are not allowed here
- --> $DIR/issue-85347.rs:3:46
- |
-LL | type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
- | ^^^^^^^^^^^^^ associated type not allowed here
-
-error: aborting due to 2 previous errors
-
-Some errors have detailed explanations: E0107, E0229.
-For more information about an error, try `rustc --explain E0107`.