Actions
Bug #5540
closedFinal comma in argument list before block causes syntax error
Description
The following code parses and runs correctly under 1.9.2-p290 but causes a syntax error under 1.9.3-p0:
def test(foo, &block); end
test 'hello', do; end
Updated by jballanc (Joshua Ballanco) about 13 years ago
This was introduced by r32235:
* parse.y: comma at the end of line is no longer allowed.
A patch from Yukihiro Matsumoto <matz AT ruby-lang.org>.
(fixed #3456).
Is it intended that the above syntax should no longer be valid in Ruby 1.9.3?
Updated by kosaki (Motohiro KOSAKI) about 13 years ago
- Category set to core
- Status changed from Open to Assigned
- Assignee set to matz (Yukihiro Matsumoto)
Updated by matz (Yukihiro Matsumoto) almost 13 years ago
- Status changed from Assigned to Rejected
Syntax error is intentional. It was caused by a 1.9.2 bug.
Matz.
Actions
Like0
Like0Like0Like0