summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0201.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 /tests/ui/error-codes/E0201.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 'tests/ui/error-codes/E0201.stderr')
-rw-r--r--tests/ui/error-codes/E0201.stderr35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/ui/error-codes/E0201.stderr b/tests/ui/error-codes/E0201.stderr
new file mode 100644
index 000000000..608ff6917
--- /dev/null
+++ b/tests/ui/error-codes/E0201.stderr
@@ -0,0 +1,35 @@
+error[E0201]: duplicate definitions with name `baz`:
+ --> $DIR/E0201.rs:17:5
+ |
+LL | fn baz(&self) -> bool;
+ | ---------------------- item in trait
+...
+LL | fn baz(&self) -> bool { true }
+ | ------------------------------ previous definition here
+LL | fn baz(&self) -> bool { self.0 > 5 }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ duplicate definition
+
+error[E0201]: duplicate definitions with name `Quux`:
+ --> $DIR/E0201.rs:18:5
+ |
+LL | type Quux;
+ | ---------- item in trait
+...
+LL | type Quux = u32;
+ | ---------------- previous definition here
+...
+LL | type Quux = u32;
+ | ^^^^^^^^^^^^^^^^ duplicate definition
+
+error[E0592]: duplicate definitions with name `bar`
+ --> $DIR/E0201.rs:5:5
+ |
+LL | fn bar(&self) -> bool { self.0 > 5 }
+ | --------------------- other definition for `bar`
+LL | fn bar() {}
+ | ^^^^^^^^ duplicate definitions for `bar`
+
+error: aborting due to 3 previous errors
+
+Some errors have detailed explanations: E0201, E0592.
+For more information about an error, try `rustc --explain E0201`.