kirun (Kieran Leigh)
- Login: kirun
- Registered on: 03/06/2019
- Last sign in: 04/17/2019
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/06/2019
-
12:22 AM Ruby Bug #15640 (Closed): Inconsistent value passed to respond_to_missing?
- If the symbol has been defined, then it is passed. Otherwise a string is passed the first time.
```ruby
class SomeBug
def respond_to_missing?(m, *)
p m
true
end
end
if false then
# uncomment to force to sy...