summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/item_after_statement.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:20:39 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:20:39 +0000
commit1376c5a617be5c25655d0d7cb63e3beaa5a6e026 (patch)
tree3bb8d61aee02bc7a15eab3f36e3b921afc2075d0 /src/tools/clippy/tests/ui/item_after_statement.rs
parentReleasing progress-linux version 1.69.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-1376c5a617be5c25655d0d7cb63e3beaa5a6e026.tar.xz
rustc-1376c5a617be5c25655d0d7cb63e3beaa5a6e026.zip
Merging upstream version 1.70.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/item_after_statement.rs')
-rw-r--r--src/tools/clippy/tests/ui/item_after_statement.rs53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/tools/clippy/tests/ui/item_after_statement.rs b/src/tools/clippy/tests/ui/item_after_statement.rs
deleted file mode 100644
index 5e92dcab1..000000000
--- a/src/tools/clippy/tests/ui/item_after_statement.rs
+++ /dev/null
@@ -1,53 +0,0 @@
-#![warn(clippy::items_after_statements)]
-#![allow(clippy::uninlined_format_args)]
-
-fn ok() {
- fn foo() {
- println!("foo");
- }
- foo();
-}
-
-fn last() {
- foo();
- fn foo() {
- println!("foo");
- }
-}
-
-fn main() {
- foo();
- fn foo() {
- println!("foo");
- }
- foo();
-}
-
-fn mac() {
- let mut a = 5;
- println!("{}", a);
- // do not lint this, because it needs to be after `a`
- macro_rules! b {
- () => {{
- a = 6;
- fn say_something() {
- println!("something");
- }
- }};
- }
- b!();
- println!("{}", a);
-}
-
-fn semicolon() {
- struct S {
- a: u32,
- };
- impl S {
- fn new(a: u32) -> Self {
- Self { a }
- }
- }
-
- let _ = S::new(3);
-}