summaryrefslogtreecommitdiff
path: root/test/racc/assets/nullbug1.y
blob: 4b267ba0ea6f3b636e2e9e7baf61306af8e80b0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# 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