summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-21546.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /src/test/ui/issues/issue-21546.stderr
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/issues/issue-21546.stderr')
-rw-r--r--src/test/ui/issues/issue-21546.stderr69
1 files changed, 0 insertions, 69 deletions
diff --git a/src/test/ui/issues/issue-21546.stderr b/src/test/ui/issues/issue-21546.stderr
deleted file mode 100644
index 5fd06fc67..000000000
--- a/src/test/ui/issues/issue-21546.stderr
+++ /dev/null
@@ -1,69 +0,0 @@
-error[E0428]: the name `Foo` is defined multiple times
- --> $DIR/issue-21546.rs:7:1
- |
-LL | mod Foo { }
- | ------- previous definition of the module `Foo` here
-...
-LL | struct Foo;
- | ^^^^^^^^^^^ `Foo` redefined here
- |
- = note: `Foo` must be defined only once in the type namespace of this module
-
-error[E0428]: the name `Bar` is defined multiple times
- --> $DIR/issue-21546.rs:14:1
- |
-LL | mod Bar { }
- | ------- previous definition of the module `Bar` here
-...
-LL | struct Bar(i32);
- | ^^^^^^^^^^^^^^^^ `Bar` redefined here
- |
- = note: `Bar` must be defined only once in the type namespace of this module
-
-error[E0428]: the name `Baz` is defined multiple times
- --> $DIR/issue-21546.rs:22:1
- |
-LL | struct Baz(i32);
- | ---------------- previous definition of the type `Baz` here
-...
-LL | mod Baz { }
- | ^^^^^^^ `Baz` redefined here
- |
- = note: `Baz` must be defined only once in the type namespace of this module
-
-error[E0428]: the name `Qux` is defined multiple times
- --> $DIR/issue-21546.rs:30:1
- |
-LL | struct Qux { x: bool }
- | ---------- previous definition of the type `Qux` here
-...
-LL | mod Qux { }
- | ^^^^^^^ `Qux` redefined here
- |
- = note: `Qux` must be defined only once in the type namespace of this module
-
-error[E0428]: the name `Quux` is defined multiple times
- --> $DIR/issue-21546.rs:38:1
- |
-LL | struct Quux;
- | ------------ previous definition of the type `Quux` here
-...
-LL | mod Quux { }
- | ^^^^^^^^ `Quux` redefined here
- |
- = note: `Quux` must be defined only once in the type namespace of this module
-
-error[E0428]: the name `Corge` is defined multiple times
- --> $DIR/issue-21546.rs:46:1
- |
-LL | enum Corge { A, B }
- | ---------- previous definition of the type `Corge` here
-...
-LL | mod Corge { }
- | ^^^^^^^^^ `Corge` redefined here
- |
- = note: `Corge` must be defined only once in the type namespace of this module
-
-error: aborting due to 6 previous errors
-
-For more information about this error, try `rustc --explain E0428`.