summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-59324.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/associated-types/issue-59324.stderr')
-rw-r--r--src/test/ui/associated-types/issue-59324.stderr70
1 files changed, 0 insertions, 70 deletions
diff --git a/src/test/ui/associated-types/issue-59324.stderr b/src/test/ui/associated-types/issue-59324.stderr
deleted file mode 100644
index 62cf1f37a..000000000
--- a/src/test/ui/associated-types/issue-59324.stderr
+++ /dev/null
@@ -1,70 +0,0 @@
-error[E0277]: the trait bound `Bug: Foo` is not satisfied
- --> $DIR/issue-59324.rs:11:1
- |
-LL | / pub trait ThriftService<Bug: NotFoo>:
-LL | |
-LL | |
-LL | | Service<AssocType = <Bug as Foo>::OnlyFoo>
- | |______________________________________________^ the trait `Foo` is not implemented for `Bug`
- |
-help: consider further restricting this bound
- |
-LL | pub trait ThriftService<Bug: NotFoo + Foo>:
- | +++++
-
-error[E0277]: the trait bound `Bug: Foo` is not satisfied
- --> $DIR/issue-59324.rs:11:1
- |
-LL | / pub trait ThriftService<Bug: NotFoo>:
-LL | |
-LL | |
-LL | | Service<AssocType = <Bug as Foo>::OnlyFoo>
-... |
-LL | | ) -> Self::AssocType;
-LL | | }
- | |_^ the trait `Foo` is not implemented for `Bug`
- |
-help: consider further restricting this bound
- |
-LL | pub trait ThriftService<Bug: NotFoo + Foo>:
- | +++++
-
-error[E0277]: the trait bound `Bug: Foo` is not satisfied
- --> $DIR/issue-59324.rs:16:5
- |
-LL | / fn get_service(
-LL | |
-LL | |
-LL | | &self,
-LL | | ) -> Self::AssocType;
- | |_________________________^ the trait `Foo` is not implemented for `Bug`
- |
-help: consider further restricting this bound
- |
-LL | pub trait ThriftService<Bug: NotFoo + Foo>:
- | +++++
-
-error[E0277]: the trait bound `(): Foo` is not satisfied
- --> $DIR/issue-59324.rs:23:1
- |
-LL | fn with_factory<H>(factory: dyn ThriftService<()>) {}
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Foo` is not implemented for `()`
-
-error[E0277]: the trait bound `Bug: Foo` is not satisfied
- --> $DIR/issue-59324.rs:16:5
- |
-LL | / fn get_service(
-LL | |
-LL | |
-LL | | &self,
-LL | | ) -> Self::AssocType;
- | |_________________________^ the trait `Foo` is not implemented for `Bug`
- |
-help: consider further restricting this bound
- |
-LL | pub trait ThriftService<Bug: NotFoo + Foo>:
- | +++++
-
-error: aborting due to 5 previous errors
-
-For more information about this error, try `rustc --explain E0277`.