about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tests/ui/closures/varargs-in-closure-isnt-supported.rs10
-rw-r--r--tests/ui/closures/varargs-in-closure-isnt-supported.stderr10
2 files changed, 0 insertions, 20 deletions
diff --git a/tests/ui/closures/varargs-in-closure-isnt-supported.rs b/tests/ui/closures/varargs-in-closure-isnt-supported.rs
deleted file mode 100644
index 4de78bef14d..00000000000
--- a/tests/ui/closures/varargs-in-closure-isnt-supported.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-// var-args are not supported in closures, ensure we don't misdirect people (#146489)
-#![feature(c_variadic)]
-
-unsafe extern "C" fn thats_not_a_pattern(mut ap: ...) -> u32 {
-    let mut lol = |...| (); //~ ERROR: unexpected `...`
-    unsafe { ap.arg::<u32>() } //~^ NOTE: C-variadic type `...` is not allowed here
-    //~| NOTE: not a valid pattern
-}
-
-fn main() {}
diff --git a/tests/ui/closures/varargs-in-closure-isnt-supported.stderr b/tests/ui/closures/varargs-in-closure-isnt-supported.stderr
deleted file mode 100644
index a645741a527..00000000000
--- a/tests/ui/closures/varargs-in-closure-isnt-supported.stderr
+++ /dev/null
@@ -1,10 +0,0 @@
-error: unexpected `...`
-  --> $DIR/varargs-in-closure-isnt-supported.rs:5:20
-   |
-LL |     let mut lol = |...| ();
-   |                    ^^^ not a valid pattern
-   |
-   = note: C-variadic type `...` is not allowed here
-
-error: aborting due to 1 previous error
-