summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/issue-74816.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/generic-associated-types/issue-74816.stderr')
-rw-r--r--src/test/ui/generic-associated-types/issue-74816.stderr35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/test/ui/generic-associated-types/issue-74816.stderr b/src/test/ui/generic-associated-types/issue-74816.stderr
new file mode 100644
index 000000000..9eaa74e34
--- /dev/null
+++ b/src/test/ui/generic-associated-types/issue-74816.stderr
@@ -0,0 +1,35 @@
+error[E0277]: the trait bound `Self: Trait1` is not satisfied
+ --> $DIR/issue-74816.rs:9:31
+ |
+LL | type Associated: Trait1 = Self;
+ | ^^^^ the trait `Trait1` is not implemented for `Self`
+ |
+note: required by a bound in `Trait2::Associated`
+ --> $DIR/issue-74816.rs:9:22
+ |
+LL | type Associated: Trait1 = Self;
+ | ^^^^^^ required by this bound in `Trait2::Associated`
+help: consider further restricting `Self`
+ |
+LL | trait Trait2: Trait1 {
+ | ++++++++
+
+error[E0277]: the size for values of type `Self` cannot be known at compilation time
+ --> $DIR/issue-74816.rs:9:31
+ |
+LL | type Associated: Trait1 = Self;
+ | ^^^^ doesn't have a size known at compile-time
+ |
+note: required by a bound in `Trait2::Associated`
+ --> $DIR/issue-74816.rs:9:5
+ |
+LL | type Associated: Trait1 = Self;
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `Trait2::Associated`
+help: consider further restricting `Self`
+ |
+LL | trait Trait2: Sized {
+ | +++++++
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0277`.