summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-2565-param-attrs/attr-without-param.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rfc-2565-param-attrs/attr-without-param.rs')
-rw-r--r--src/test/ui/rfc-2565-param-attrs/attr-without-param.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/rfc-2565-param-attrs/attr-without-param.rs b/src/test/ui/rfc-2565-param-attrs/attr-without-param.rs
deleted file mode 100644
index eeb2191ba..000000000
--- a/src/test/ui/rfc-2565-param-attrs/attr-without-param.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-#[cfg(FALSE)]
-impl S {
- fn f(#[attr]) {} //~ ERROR expected parameter name, found `)`
-}
-
-#[cfg(FALSE)]
-impl T for S {
- fn f(#[attr]) {} //~ ERROR expected parameter name, found `)`
-}
-
-#[cfg(FALSE)]
-trait T {
- fn f(#[attr]); //~ ERROR expected argument name, found `)`
-}
-
-fn main() {}