summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2024-02-20 16:21:32 -0500
committerAlan Wu <XrXr@users.noreply.github.com>2024-02-20 16:53:36 -0500
commit35fdf1a6242906117da05ec66ae0e30827ab7199 (patch)
tree039af2436cb83be56dd48c184ed33fe6f34f3b35
parent8e1090487e340747737ca20b78146bd92faac7b6 (diff)
YJIT: Remove duplicate test
-rw-r--r--bootstraptest/test_yjit.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/bootstraptest/test_yjit.rb b/bootstraptest/test_yjit.rb
index 14be1093e2..2e475cc186 100644
--- a/bootstraptest/test_yjit.rb
+++ b/bootstraptest/test_yjit.rb
@@ -4569,15 +4569,6 @@ assert_equal '[1, []]', %q{
call_site([1])
}
-# splat+kw_splat+opt+rest
-assert_equal '[1, []]', %q{
- def opt_rest(a = 0, *rest) = [a, rest]
-
- def call_site(args) = opt_rest(*args, **nil)
-
- call_site([1])
-}
-
# splat and nil kw_splat
assert_equal 'ok', %q{
def identity(x) = x