Actions
Feature #13979
closedRuby doesn't give error on keyword arguments that you can't refer to
Feature #13979:
Ruby doesn't give error on keyword arguments that you can't refer to
Status:
Rejected
Assignee:
-
Target version:
-
Description
You can't use keywords as names for normal arguments. For example all of these give a syntax error:
The reason is that there's no way to refer to these names because they are keywords.
However, we can use these names for keyword arguments. All of these work:
But I think they should give a syntax error, because for example I can't refer to the argument "class" in the first line (same reason why the first snippet gives a syntax error).
Actions