blob: 096b42be4deae28902a311b03be84297bd36841c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
1 + (return)
^~~~~~ unexpected void value expression
(return) + 1
^~~~~~ unexpected void value expression
1 and (return)
(return) and 1
^~~~~~ unexpected void value expression
1 or (return)
(return) or 1
^~~~~~ unexpected void value expression
|