summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/missing-assoc-fn.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/suggestions/missing-assoc-fn.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/suggestions/missing-assoc-fn.stderr')
-rw-r--r--src/test/ui/suggestions/missing-assoc-fn.stderr36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/test/ui/suggestions/missing-assoc-fn.stderr b/src/test/ui/suggestions/missing-assoc-fn.stderr
new file mode 100644
index 000000000..136ec2152
--- /dev/null
+++ b/src/test/ui/suggestions/missing-assoc-fn.stderr
@@ -0,0 +1,36 @@
+error[E0658]: associated type bounds are unstable
+ --> $DIR/missing-assoc-fn.rs:9:22
+ |
+LL | fn bat<T: TraitB<Item: Copy>>(_: T) -> Self;
+ | ^^^^^^^^^^
+ |
+ = note: see issue #52662 <https://github.com/rust-lang/rust/issues/52662> for more information
+ = help: add `#![feature(associated_type_bounds)]` to the crate attributes to enable
+
+error[E0046]: not all trait items implemented, missing: `foo`, `bar`, `baz`, `bat`
+ --> $DIR/missing-assoc-fn.rs:14:1
+ |
+LL | fn foo<T: TraitB<Item = A>>(_: T) -> Self;
+ | ------------------------------------------ `foo` from trait
+LL | fn bar<T>(_: T) -> Self;
+ | ------------------------ `bar` from trait
+LL | fn baz<T>(_: T) -> Self where T: TraitB, <T as TraitB>::Item: Copy;
+ | ------------------------------------------------------------------- `baz` from trait
+LL | fn bat<T: TraitB<Item: Copy>>(_: T) -> Self;
+ | -------------------------------------------- `bat` from trait
+...
+LL | impl TraitA<()> for S {
+ | ^^^^^^^^^^^^^^^^^^^^^ missing `foo`, `bar`, `baz`, `bat` in implementation
+
+error[E0046]: not all trait items implemented, missing: `from_iter`
+ --> $DIR/missing-assoc-fn.rs:19:1
+ |
+LL | impl FromIterator<()> for X {
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `from_iter` in implementation
+ |
+ = help: implement the missing item: `fn from_iter<T>(_: T) -> Self where T: IntoIterator, std::iter::IntoIterator::Item = A { todo!() }`
+
+error: aborting due to 3 previous errors
+
+Some errors have detailed explanations: E0046, E0658.
+For more information about an error, try `rustc --explain E0046`.