summaryrefslogtreecommitdiff
path: root/test/racc/scandata/percent
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-05-31 17:35:44 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-06-08 17:25:38 +0900
commitd1775aa388bff73ca2d22344d4c3745f23bfe654 (patch)
treeb81f25a36fff5f74a79792e6b54a9bbd48868338 /test/racc/scandata/percent
parentb90683be44d8821a1a8121b6364d653a47421914 (diff)
Try to promote racc as bundled gems
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/7877
Diffstat (limited to 'test/racc/scandata/percent')
-rw-r--r--test/racc/scandata/percent18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/racc/scandata/percent b/test/racc/scandata/percent
deleted file mode 100644
index fded9a385c..0000000000
--- a/test/racc/scandata/percent
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- 3 % 5 # mod
- 3%5 # mod
- 3% 5 # mod
- i % 5 # mod
- i%5 # mod
- i% 5 # mod
- call %{str} # string
- call(%{str}) # string
- %q{string} # string
- %Q{string} # string
- %r{string} # string
- %w(array) # array
- %x{array} # command string
- %{string} # string
- %_string_ # string
- %/string/ # regexp
-}