1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/racc/assets/digraph.y
2019-06-19 18:17:25 +09:00

29 lines
283 B
Text

# ? detect digraph bug
class P
token A B C D
rule
target : a b c d
a : A
|
b : B
|
c : C
|
d : D
|
end
---- inner
def parse
do_parse
end
def next_token
[false, '$']
end
---- footer
P.new.parse