summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-cargo/duplicate_mod
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /src/tools/clippy/tests/ui-cargo/duplicate_mod
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui-cargo/duplicate_mod')
-rw-r--r--src/tools/clippy/tests/ui-cargo/duplicate_mod/fail/Cargo.stderr52
-rw-r--r--src/tools/clippy/tests/ui-cargo/duplicate_mod/fail/src/main.stderr53
2 files changed, 52 insertions, 53 deletions
diff --git a/src/tools/clippy/tests/ui-cargo/duplicate_mod/fail/Cargo.stderr b/src/tools/clippy/tests/ui-cargo/duplicate_mod/fail/Cargo.stderr
new file mode 100644
index 000000000..fde3a1e65
--- /dev/null
+++ b/src/tools/clippy/tests/ui-cargo/duplicate_mod/fail/Cargo.stderr
@@ -0,0 +1,52 @@
+error: file is loaded as a module multiple times: `src/b.rs`
+ --> src/main.rs:5:1
+ |
+5 | mod b;
+ | ^^^^^^ first loaded here
+6 | / #[path = "b.rs"]
+7 | | mod b2;
+ | |_______^ loaded again here
+ |
+ = help: replace all but one `mod` item with `use` items
+ = note: `-D clippy::duplicate-mod` implied by `-D warnings`
+
+error: file is loaded as a module multiple times: `src/c.rs`
+ --> src/main.rs:9:1
+ |
+9 | mod c;
+ | ^^^^^^ first loaded here
+10 | / #[path = "c.rs"]
+11 | | mod c2;
+ | |_______^ loaded again here
+12 | / #[path = "c.rs"]
+13 | | mod c3;
+ | |_______^ loaded again here
+ |
+ = help: replace all but one `mod` item with `use` items
+
+error: file is loaded as a module multiple times: `src/d.rs`
+ --> src/main.rs:18:1
+ |
+18 | mod d;
+ | ^^^^^^ first loaded here
+19 | / #[path = "d.rs"]
+20 | | mod d2;
+ | |_______^ loaded again here
+ |
+ = help: replace all but one `mod` item with `use` items
+
+error: file is loaded as a module multiple times: `src/from_other_module.rs`
+ --> src/main.rs:15:1
+ |
+15 | mod from_other_module;
+ | ^^^^^^^^^^^^^^^^^^^^^^ first loaded here
+ |
+ ::: src/other_module/mod.rs:1:1
+ |
+1 | / #[path = "../from_other_module.rs"]
+2 | | mod m;
+ | |______^ loaded again here
+ |
+ = help: replace all but one `mod` item with `use` items
+
+error: could not compile `duplicate_mod` (bin "duplicate_mod") due to 4 previous errors
diff --git a/src/tools/clippy/tests/ui-cargo/duplicate_mod/fail/src/main.stderr b/src/tools/clippy/tests/ui-cargo/duplicate_mod/fail/src/main.stderr
deleted file mode 100644
index 3b80d89a6..000000000
--- a/src/tools/clippy/tests/ui-cargo/duplicate_mod/fail/src/main.stderr
+++ /dev/null
@@ -1,53 +0,0 @@
-error: file is loaded as a module multiple times: `$DIR/b.rs`
- --> $DIR/main.rs:5:1
- |
-LL | mod b;
- | ^^^^^^ first loaded here
-LL | / #[path = "b.rs"]
-LL | | mod b2;
- | |_______^ loaded again here
- |
- = help: replace all but one `mod` item with `use` items
- = note: `-D clippy::duplicate-mod` implied by `-D warnings`
-
-error: file is loaded as a module multiple times: `$DIR/c.rs`
- --> $DIR/main.rs:9:1
- |
-LL | mod c;
- | ^^^^^^ first loaded here
-LL | / #[path = "c.rs"]
-LL | | mod c2;
- | |_______^ loaded again here
-LL | / #[path = "c.rs"]
-LL | | mod c3;
- | |_______^ loaded again here
- |
- = help: replace all but one `mod` item with `use` items
-
-error: file is loaded as a module multiple times: `$DIR/d.rs`
- --> $DIR/main.rs:18:1
- |
-LL | mod d;
- | ^^^^^^ first loaded here
-LL | / #[path = "d.rs"]
-LL | | mod d2;
- | |_______^ loaded again here
- |
- = help: replace all but one `mod` item with `use` items
-
-error: file is loaded as a module multiple times: `$DIR/from_other_module.rs`
- --> $DIR/main.rs:15:1
- |
-LL | mod from_other_module;
- | ^^^^^^^^^^^^^^^^^^^^^^ first loaded here
- |
- ::: $DIR/other_module/mod.rs:1:1
- |
-LL | / #[path = "../from_other_module.rs"]
-LL | | mod m;
- | |______^ loaded again here
- |
- = help: replace all but one `mod` item with `use` items
-
-error: aborting due to 4 previous errors
-