summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-2565-param-attrs/param-attrs-cfg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rfc-2565-param-attrs/param-attrs-cfg.rs')
-rw-r--r--src/test/ui/rfc-2565-param-attrs/param-attrs-cfg.rs121
1 files changed, 0 insertions, 121 deletions
diff --git a/src/test/ui/rfc-2565-param-attrs/param-attrs-cfg.rs b/src/test/ui/rfc-2565-param-attrs/param-attrs-cfg.rs
deleted file mode 100644
index a4d9d32b5..000000000
--- a/src/test/ui/rfc-2565-param-attrs/param-attrs-cfg.rs
+++ /dev/null
@@ -1,121 +0,0 @@
-// compile-flags: --cfg something
-// edition:2018
-
-#![feature(async_closure)]
-#![deny(unused_variables)]
-
-extern "C" {
- fn ffi(
- #[cfg(nothing)] a: i32,
- #[cfg(something)] b: i32,
- #[cfg_attr(something, cfg(nothing))] c: i32,
- #[cfg_attr(nothing, cfg(nothing))] ...
- );
-}
-
-type FnType = fn(
- #[cfg(nothing)] a: i32,
- #[cfg(something)] b: i32,
- #[cfg_attr(nothing, cfg(nothing))] c: i32,
- #[cfg_attr(something, cfg(nothing))] d: i32,
-);
-
-async fn foo_async(
- #[cfg(something)] a: i32,
- //~^ ERROR unused variable: `a`
- #[cfg(nothing)] b: i32,
-) {}
-fn foo(
- #[cfg(nothing)] a: i32,
- #[cfg(something)] b: i32,
- //~^ ERROR unused variable: `b`
- #[cfg_attr(nothing, cfg(nothing))] c: i32,
- //~^ ERROR unused variable: `c`
- #[cfg_attr(something, cfg(nothing))] d: i32,
-) {}
-
-struct RefStruct {}
-impl RefStruct {
- async fn bar_async(
- &self,
- #[cfg(something)] a: i32,
- //~^ ERROR unused variable: `a`
- #[cfg(nothing)] b: i32,
- ) {}
- fn bar(
- &self,
- #[cfg(nothing)] a: i32,
- #[cfg(something)] b: i32,
- //~^ ERROR unused variable: `b`
- #[cfg_attr(nothing, cfg(nothing))] c: i32,
- //~^ ERROR unused variable: `c`
- #[cfg_attr(something, cfg(nothing))] d: i32,
- ) {}
- fn issue_64682_associated_fn(
- #[cfg(nothing)] a: i32,
- #[cfg(something)] b: i32,
- //~^ ERROR unused variable: `b`
- #[cfg_attr(nothing, cfg(nothing))] c: i32,
- //~^ ERROR unused variable: `c`
- #[cfg_attr(something, cfg(nothing))] d: i32,
- ) {}
-}
-trait RefTrait {
- fn bar(
- &self,
- #[cfg(nothing)] a: i32,
- #[cfg(something)] b: i32,
- //~^ ERROR unused variable: `b`
- #[cfg_attr(nothing, cfg(nothing))] c: i32,
- //~^ ERROR unused variable: `c`
- #[cfg_attr(something, cfg(nothing))] d: i32,
- ) {}
- fn issue_64682_associated_fn(
- #[cfg(nothing)] a: i32,
- #[cfg(something)] b: i32,
- //~^ ERROR unused variable: `b`
- #[cfg_attr(nothing, cfg(nothing))] c: i32,
- //~^ ERROR unused variable: `c`
- #[cfg_attr(something, cfg(nothing))] d: i32,
- ) {}
-}
-impl RefTrait for RefStruct {
- fn bar(
- &self,
- #[cfg(nothing)] a: i32,
- #[cfg(something)] b: i32,
- //~^ ERROR unused variable: `b`
- #[cfg_attr(nothing, cfg(nothing))] c: i32,
- //~^ ERROR unused variable: `c`
- #[cfg_attr(something, cfg(nothing))] d: i32,
- ) {}
- fn issue_64682_associated_fn(
- #[cfg(nothing)] a: i32,
- #[cfg(something)] b: i32,
- //~^ ERROR unused variable: `b`
- #[cfg_attr(nothing, cfg(nothing))] c: i32,
- //~^ ERROR unused variable: `c`
- #[cfg_attr(something, cfg(nothing))] d: i32,
- ) {}
-}
-
-fn main() {
- let _: unsafe extern "C" fn(_, ...) = ffi;
- let _: fn(_, _) = foo;
- let _: FnType = |_, _| {};
- let a = async move |
- #[cfg(something)] a: i32,
- //~^ ERROR unused variable: `a`
- #[cfg(nothing)] b: i32,
- | {};
- let c = |
- #[cfg(nothing)] a: i32,
- #[cfg(something)] b: i32,
- //~^ ERROR unused variable: `b`
- #[cfg_attr(nothing, cfg(nothing))] c: i32,
- //~^ ERROR unused variable: `c`
- #[cfg_attr(something, cfg(nothing))] d: i32,
- | {};
- let _ = a(1);
- let _ = c(1, 2);
-}