diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:13 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:13 +0000 |
commit | 218caa410aa38c29984be31a5229b9fa717560ee (patch) | |
tree | c54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/lint/lints-in-foreign-macros.stderr | |
parent | Releasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff) | |
download | rustc-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 'src/test/ui/lint/lints-in-foreign-macros.stderr')
-rw-r--r-- | src/test/ui/lint/lints-in-foreign-macros.stderr | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/src/test/ui/lint/lints-in-foreign-macros.stderr b/src/test/ui/lint/lints-in-foreign-macros.stderr deleted file mode 100644 index f20e16287..000000000 --- a/src/test/ui/lint/lints-in-foreign-macros.stderr +++ /dev/null @@ -1,60 +0,0 @@ -warning: unused import: `std::string::ToString` - --> $DIR/lints-in-foreign-macros.rs:11:16 - | -LL | () => {use std::string::ToString;} - | ^^^^^^^^^^^^^^^^^^^^^ -... -LL | mod a { foo!(); } - | ------ in this macro invocation - | -note: the lint level is defined here - --> $DIR/lints-in-foreign-macros.rs:4:9 - | -LL | #![warn(unused_imports)] - | ^^^^^^^^^^^^^^ - = note: this warning originates in the macro `foo` (in Nightly builds, run with -Z macro-backtrace for more info) - -warning: unused import: `std::string::ToString` - --> $DIR/lints-in-foreign-macros.rs:16:18 - | -LL | mod c { baz!(use std::string::ToString;); } - | ^^^^^^^^^^^^^^^^^^^^^ - -warning: unused import: `std::string::ToString` - --> $DIR/lints-in-foreign-macros.rs:17:19 - | -LL | mod d { baz2!(use std::string::ToString;); } - | ^^^^^^^^^^^^^^^^^^^^^ - -warning: missing documentation for the crate - --> $DIR/lints-in-foreign-macros.rs:4:1 - | -LL | / #![warn(unused_imports)] -LL | | #![warn(missing_docs)] -LL | | -LL | | #[macro_use] -... | -LL | | -LL | | fn main() {} - | |____________^ - | -note: the lint level is defined here - --> $DIR/lints-in-foreign-macros.rs:5:9 - | -LL | #![warn(missing_docs)] - | ^^^^^^^^^^^^ - -warning: missing documentation for a function - --> $DIR/lints-in-foreign-macros.rs:18:6 - | -LL | baz!(pub fn undocumented() {}); - | ^^^^^^^^^^^^^^^^^^^^^ - -warning: missing documentation for a function - --> $DIR/lints-in-foreign-macros.rs:19:7 - | -LL | baz2!(pub fn undocumented2() {}); - | ^^^^^^^^^^^^^^^^^^^^^^ - -warning: 6 warnings emitted - |