Fixes golang/go#11576.
Reviewed-on: https://go-review.googlesource.com/12157
From-SVN: r226185
-46117382a58843af60fc2feab68c433a96f79e79
+e4a5e2b2a9dc556685db09421a95871f195f768b
The first line of this file holds the git revision number of the last
merge done from the gofrontend repository.
// The optional trailing comma is picked up in parameter_list.
if (!token->is_op(OPERATOR_RPAREN))
- error_at(this->location(), "expected %<)%>");
- else
- this->advance_token();
+ {
+ error_at(this->location(), "expected %<)%>");
+ return false;
+ }
+ this->advance_token();
if (saw_error)
return false;