summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-2565-param-attrs/param-attrs-allowed.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/rfc-2565-param-attrs/param-attrs-allowed.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-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/rfc-2565-param-attrs/param-attrs-allowed.rs')
-rw-r--r--src/test/ui/rfc-2565-param-attrs/param-attrs-allowed.rs101
1 files changed, 0 insertions, 101 deletions
diff --git a/src/test/ui/rfc-2565-param-attrs/param-attrs-allowed.rs b/src/test/ui/rfc-2565-param-attrs/param-attrs-allowed.rs
deleted file mode 100644
index a547d09d0..000000000
--- a/src/test/ui/rfc-2565-param-attrs/param-attrs-allowed.rs
+++ /dev/null
@@ -1,101 +0,0 @@
-// check-pass
-// compile-flags: --cfg something
-
-#![deny(unused_mut)]
-
-extern "C" {
- fn ffi(
- #[allow(unused_mut)] a: i32,
- #[cfg(something)] b: i32,
- #[cfg_attr(something, cfg(nothing))] c: i32,
- #[forbid(unused_mut)] d: i32,
- #[deny(unused_mut)] #[warn(unused_mut)] ...
- );
-}
-
-type FnType = fn(
- #[allow(unused_mut)] a: i32,
- #[cfg(something)] b: i32,
- #[cfg_attr(something, cfg(nothing))] c: i32,
- #[forbid(unused_mut)] d: i32,
- #[deny(unused_mut)] #[warn(unused_mut)] e: i32
-);
-
-pub fn foo(
- #[allow(unused_mut)] a: i32,
- #[cfg(something)] b: i32,
- #[cfg_attr(something, cfg(nothing))] c: i32,
- #[forbid(unused_mut)] d: i32,
- #[deny(unused_mut)] #[warn(unused_mut)] _e: i32
-) {}
-
-// self
-
-struct SelfStruct {}
-impl SelfStruct {
- fn foo(
- #[allow(unused_mut)] self,
- #[cfg(something)] a: i32,
- #[cfg_attr(something, cfg(nothing))]
- #[deny(unused_mut)] b: i32,
- ) {}
-}
-
-struct RefStruct {}
-impl RefStruct {
- fn foo(
- #[allow(unused_mut)] &self,
- #[cfg(something)] a: i32,
- #[cfg_attr(something, cfg(nothing))]
- #[deny(unused_mut)] b: i32,
- ) {}
-}
-trait RefTrait {
- fn foo(
- #[forbid(unused_mut)] &self,
- #[warn(unused_mut)] a: i32
- ) {}
-}
-impl RefTrait for RefStruct {
- fn foo(
- #[forbid(unused_mut)] &self,
- #[warn(unused_mut)] a: i32
- ) {}
-}
-
-// Box<Self>
-
-struct BoxSelfStruct {}
-impl BoxSelfStruct {
- fn foo(
- #[allow(unused_mut)] self: Box<Self>,
- #[cfg(something)] a: i32,
- #[cfg_attr(something, cfg(nothing))]
- #[deny(unused_mut)] b: i32,
- ) {}
-}
-trait BoxSelfTrait {
- fn foo(
- #[forbid(unused_mut)] self: Box<Self>,
- #[warn(unused_mut)] a: i32
- ) {}
-}
-impl BoxSelfTrait for BoxSelfStruct {
- fn foo(
- #[forbid(unused_mut)] self: Box<Self>,
- #[warn(unused_mut)] a: i32
- ) {}
-}
-
-fn main() {
- let _: unsafe extern "C" fn(_, _, _, ...) = ffi;
- let _: fn(_, _, _, _) = foo;
- let _: FnType = |_, _, _, _| {};
- let c = |
- #[allow(unused_mut)] a: u32,
- #[cfg(something)] b: i32,
- #[cfg_attr(something, cfg(nothing))]
- #[deny(unused_mut)] c: i32,
- | {};
- let _ = c(1, 2);
-}