mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
26 lines
177 B
Text
26 lines
177 B
Text
|
#
|
||
|
# number of conflicts must be ZERO.
|
||
|
#
|
||
|
|
||
|
class T
|
||
|
|
||
|
rule
|
||
|
|
||
|
targ : dummy
|
||
|
| a b c
|
||
|
|
||
|
dummy : V v
|
||
|
|
||
|
V : E e
|
||
|
| F f
|
||
|
|
|
||
|
;
|
||
|
|
||
|
E :
|
||
|
;
|
||
|
|
||
|
F :
|
||
|
;
|
||
|
|
||
|
end
|