summaryrefslogtreecommitdiff
path: root/test/prism/errors/void_value_expression_in_def.txt
blob: fed52a667762e1c2713d06e7d66b284eaa7816bb (plain)
1
2
3
4
5
6
7
8
9
10
def (return).x
     ^~~~~~ unexpected void value expression
end
def x(a = return)
          ^~~~~~ unexpected void value expression
end
def x(a: return)
         ^~~~~~ unexpected void value expression
end