summaryrefslogtreecommitdiffstats
path: root/src/test/ui/compare-method/bad-self-type.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/compare-method/bad-self-type.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/compare-method/bad-self-type.stderr')
-rw-r--r--src/test/ui/compare-method/bad-self-type.stderr50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/test/ui/compare-method/bad-self-type.stderr b/src/test/ui/compare-method/bad-self-type.stderr
deleted file mode 100644
index 90e907157..000000000
--- a/src/test/ui/compare-method/bad-self-type.stderr
+++ /dev/null
@@ -1,50 +0,0 @@
-error[E0053]: method `poll` has an incompatible type for trait
- --> $DIR/bad-self-type.rs:10:13
- |
-LL | fn poll(self, _: &mut Context<'_>) -> Poll<()> {
- | ^^^^
- | |
- | expected struct `Pin`, found struct `MyFuture`
- | help: change the self-receiver type to match the trait: `self: Pin<&mut MyFuture>`
- |
- = note: expected fn pointer `fn(Pin<&mut MyFuture>, &mut Context<'_>) -> Poll<_>`
- found fn pointer `fn(MyFuture, &mut Context<'_>) -> Poll<_>`
-
-error[E0053]: method `foo` has an incompatible type for trait
- --> $DIR/bad-self-type.rs:22:18
- |
-LL | fn foo(self: Box<Self>) {}
- | ------^^^^^^^^^
- | | |
- | | expected struct `MyFuture`, found struct `Box`
- | help: change the self-receiver type to match the trait: `self`
- |
-note: type in trait
- --> $DIR/bad-self-type.rs:17:12
- |
-LL | fn foo(self);
- | ^^^^
- = note: expected fn pointer `fn(MyFuture)`
- found fn pointer `fn(Box<MyFuture>)`
-
-error[E0053]: method `bar` has an incompatible type for trait
- --> $DIR/bad-self-type.rs:24:18
- |
-LL | fn bar(self) {}
- | ^ expected enum `Option`, found `()`
- |
-note: type in trait
- --> $DIR/bad-self-type.rs:18:21
- |
-LL | fn bar(self) -> Option<()>;
- | ^^^^^^^^^^
- = note: expected fn pointer `fn(MyFuture) -> Option<()>`
- found fn pointer `fn(MyFuture)`
-help: change the output type to match the trait
- |
-LL | fn bar(self) -> Option<()> {}
- | +++++++++++++
-
-error: aborting due to 3 previous errors
-
-For more information about this error, try `rustc --explain E0053`.