summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-check/issue-88577-check-fn-with-more-than-65535-arguments.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/type/type-check/issue-88577-check-fn-with-more-than-65535-arguments.rs')
-rw-r--r--src/test/ui/type/type-check/issue-88577-check-fn-with-more-than-65535-arguments.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/type/type-check/issue-88577-check-fn-with-more-than-65535-arguments.rs b/src/test/ui/type/type-check/issue-88577-check-fn-with-more-than-65535-arguments.rs
deleted file mode 100644
index e50cc5865..000000000
--- a/src/test/ui/type/type-check/issue-88577-check-fn-with-more-than-65535-arguments.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-macro_rules! many_args {
- ([$($t:tt)*]#$($h:tt)*) => {
- many_args!{[$($t)*$($t)*]$($h)*}
- };
- ([$($t:tt)*]) => {
- fn _f($($t: ()),*) {} //~ ERROR function can not have more than 65535 arguments
- }
-}
-
-many_args!{[_]########## ######}
-
-fn main() {}