hoshiumiarata (Arata Hoshiumi)
- Login: hoshiumiarata
- Registered on: 11/28/2024
- Last sign in: 05/05/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
11/28/2024
-
03:26 AM Ruby Bug #20917 (Open): redo/next in nested begin block causes wrong order of execution
- It seems that `redo`/`next` in a nested `begin` block can cause the wrong order of execution.
For example:
```ruby
for _ in [0]
puts 0
begin
puts 1
begin
puts 2
redo
ensure
puts 3
end
...