summaryrefslogtreecommitdiff
path: root/test/racc/assets/nullbug2.y
blob: f09ca625e8acfec00c43b8e02010f3e5378fde6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# number of conflicts must be ZERO.
#

class A
rule
  targ: operation voidhead
      | variable
  
  voidhead : void B
  void:
  
  operation: A
  variable : A
end