summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/point-at-type-on-obligation-failure-2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/associated-types/point-at-type-on-obligation-failure-2.stderr')
-rw-r--r--src/test/ui/associated-types/point-at-type-on-obligation-failure-2.stderr45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/test/ui/associated-types/point-at-type-on-obligation-failure-2.stderr b/src/test/ui/associated-types/point-at-type-on-obligation-failure-2.stderr
new file mode 100644
index 000000000..2e7a1dd2a
--- /dev/null
+++ b/src/test/ui/associated-types/point-at-type-on-obligation-failure-2.stderr
@@ -0,0 +1,45 @@
+error[E0277]: the trait bound `bool: Bar` is not satisfied
+ --> $DIR/point-at-type-on-obligation-failure-2.rs:8:18
+ |
+LL | type Assoc = bool;
+ | ^^^^ the trait `Bar` is not implemented for `bool`
+ |
+note: required by a bound in `Foo::Assoc`
+ --> $DIR/point-at-type-on-obligation-failure-2.rs:4:17
+ |
+LL | type Assoc: Bar;
+ | ^^^ required by this bound in `Foo::Assoc`
+
+error[E0277]: the trait bound `bool: Bar` is not satisfied
+ --> $DIR/point-at-type-on-obligation-failure-2.rs:19:18
+ |
+LL | type Assoc = bool;
+ | ^^^^ the trait `Bar` is not implemented for `bool`
+ |
+note: required by a bound in `Baz::Assoc`
+ --> $DIR/point-at-type-on-obligation-failure-2.rs:13:18
+ |
+LL | Self::Assoc: Bar,
+ | ^^^ required by this bound in `Baz::Assoc`
+LL | {
+LL | type Assoc;
+ | ----- required by a bound in this
+
+error[E0277]: the trait bound `bool: Bar` is not satisfied
+ --> $DIR/point-at-type-on-obligation-failure-2.rs:30:18
+ |
+LL | type Assoc = bool;
+ | ^^^^ the trait `Bar` is not implemented for `bool`
+ |
+note: required by a bound in `Bat::Assoc`
+ --> $DIR/point-at-type-on-obligation-failure-2.rs:24:27
+ |
+LL | <Self as Bat>::Assoc: Bar,
+ | ^^^ required by this bound in `Bat::Assoc`
+LL | {
+LL | type Assoc;
+ | ----- required by a bound in this
+
+error: aborting due to 3 previous errors
+
+For more information about this error, try `rustc --explain E0277`.