mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
bf431e77b8
#### Before this patch:
```ruby
Integer("_1") #=> 1
"_1".to_i #=> 1
```
#### After this patch (same as Ruby):
```ruby
Integer("_1") #=> ArgumentError
"_1".to_i #=> 0
```