diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:03 +0000 |
commit | 64d98f8ee037282c35007b64c2649055c56af1db (patch) | |
tree | 5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/error-codes/E0201.stderr | |
parent | Adding debian version 1.67.1+dfsg1-1. (diff) | |
download | rustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz rustc-64d98f8ee037282c35007b64c2649055c56af1db.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.stderr | 35 |
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`. |