summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/deref_addrof.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:20:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:20:29 +0000
commit631cd5845e8de329d0e227aaa707d7ea228b8f8f (patch)
treea1b87c8f8cad01cf18f7c5f57a08f102771ed303 /src/tools/clippy/tests/ui/deref_addrof.rs
parentAdding debian version 1.69.0+dfsg1-1. (diff)
downloadrustc-631cd5845e8de329d0e227aaa707d7ea228b8f8f.tar.xz
rustc-631cd5845e8de329d0e227aaa707d7ea228b8f8f.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/deref_addrof.rs')
-rw-r--r--src/tools/clippy/tests/ui/deref_addrof.rs24
1 files changed, 8 insertions, 16 deletions
diff --git a/src/tools/clippy/tests/ui/deref_addrof.rs b/src/tools/clippy/tests/ui/deref_addrof.rs
index 49f360b9a..3db5fafe9 100644
--- a/src/tools/clippy/tests/ui/deref_addrof.rs
+++ b/src/tools/clippy/tests/ui/deref_addrof.rs
@@ -1,7 +1,12 @@
// run-rustfix
+// aux-build:proc_macros.rs
+
#![allow(clippy::return_self_not_must_use)]
#![warn(clippy::deref_addrof)]
+extern crate proc_macros;
+use proc_macros::inline_macros;
+
fn get_number() -> usize {
10
}
@@ -41,28 +46,15 @@ fn main() {
let _ = unsafe { *core::ptr::addr_of!(a) };
}
-#[rustfmt::skip]
-macro_rules! m {
- ($visitor: expr) => {
- *& $visitor
- };
-}
-
-#[rustfmt::skip]
-macro_rules! m_mut {
- ($visitor: expr) => {
- *& mut $visitor
- };
-}
-
#[derive(Copy, Clone)]
pub struct S;
+#[inline_macros]
impl S {
pub fn f(&self) -> &Self {
- m!(self)
+ inline!(*& $(@expr self))
}
#[allow(unused_mut)] // mut will be unused, once the macro is fixed
pub fn f_mut(mut self) -> Self {
- m_mut!(self)
+ inline!(*&mut $(@expr self))
}
}