summaryrefslogtreecommitdiffstats
path: root/src/test/ui/inherent-impls-overlap-check/overlap.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/inherent-impls-overlap-check/overlap.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/inherent-impls-overlap-check/overlap.stderr')
-rw-r--r--src/test/ui/inherent-impls-overlap-check/overlap.stderr47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/test/ui/inherent-impls-overlap-check/overlap.stderr b/src/test/ui/inherent-impls-overlap-check/overlap.stderr
new file mode 100644
index 000000000..3dd279371
--- /dev/null
+++ b/src/test/ui/inherent-impls-overlap-check/overlap.stderr
@@ -0,0 +1,47 @@
+error[E0592]: duplicate definitions with name `hello`
+ --> $DIR/overlap.rs:20:12
+ |
+LL | impl Foo { fn hello() {} }
+ | ^^^^^^^^^^ duplicate definitions for `hello`
+LL | impl Foo { fn hello() {} }
+ | ---------- other definition for `hello`
+
+error[E0592]: duplicate definitions with name `hello2`
+ --> $DIR/overlap.rs:31:5
+ |
+LL | fn hello2() {}
+ | ^^^^^^^^^^^ duplicate definitions for `hello2`
+...
+LL | fn hello2() {}
+ | ----------- other definition for `hello2`
+
+error[E0592]: duplicate definitions with name `bar`
+ --> $DIR/overlap.rs:46:5
+ |
+LL | fn bar() {}
+ | ^^^^^^^^ duplicate definitions for `bar`
+...
+LL | fn bar() {}
+ | -------- other definition for `bar`
+
+error[E0592]: duplicate definitions with name `hello3`
+ --> $DIR/overlap.rs:47:5
+ |
+LL | fn hello3() {}
+ | ^^^^^^^^^^^ duplicate definitions for `hello3`
+...
+LL | fn hello3() {}
+ | ----------- other definition for `hello3`
+
+error[E0592]: duplicate definitions with name `bar2`
+ --> $DIR/overlap.rs:67:5
+ |
+LL | fn bar2() {}
+ | ^^^^^^^^^ duplicate definitions for `bar2`
+LL | }
+LL | impl Bar<B> { fn bar2() {} }
+ | --------- other definition for `bar2`
+
+error: aborting due to 5 previous errors
+
+For more information about this error, try `rustc --explain E0592`.