about summary refs log tree commit diff
path: root/tests/ui/impl-trait/method-resolution2.next.stderr
diff options
context:
space:
mode:
authorlcnr <rust@lcnr.de>2025-09-24 10:08:00 +0200
committerlcnr <rust@lcnr.de>2025-09-26 16:33:15 +0200
commiteebf871feaca10886f80a76a36b3771e960c047e (patch)
tree46b7109fabb01dfc5d38fd73f21ce7f145b9d33c /tests/ui/impl-trait/method-resolution2.next.stderr
parent148fd9ad3c434c26a952e01e37c35aa26cb8315c (diff)
downloadrust-eebf871feaca10886f80a76a36b3771e960c047e.tar.gz
rust-eebf871feaca10886f80a76a36b3771e960c047e.zip
move tests
Diffstat (limited to 'tests/ui/impl-trait/method-resolution2.next.stderr')
-rw-r--r--tests/ui/impl-trait/method-resolution2.next.stderr20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/ui/impl-trait/method-resolution2.next.stderr b/tests/ui/impl-trait/method-resolution2.next.stderr
deleted file mode 100644
index 223430e1658..00000000000
--- a/tests/ui/impl-trait/method-resolution2.next.stderr
+++ /dev/null
@@ -1,20 +0,0 @@
-error[E0034]: multiple applicable items in scope
-  --> $DIR/method-resolution2.rs:25:11
-   |
-LL |         x.bar();
-   |           ^^^ multiple `bar` found
-   |
-note: candidate #1 is defined in an impl for the type `Bar<T>`
-  --> $DIR/method-resolution2.rs:19:5
-   |
-LL |     fn bar(self) {}
-   |     ^^^^^^^^^^^^
-note: candidate #2 is defined in an impl for the type `Bar<u32>`
-  --> $DIR/method-resolution2.rs:15:5
-   |
-LL |     fn bar(self) {}
-   |     ^^^^^^^^^^^^
-
-error: aborting due to 1 previous error
-
-For more information about this error, try `rustc --explain E0034`.