mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
b1fa180ea3
```
def yie
yield
end
def bre
yie {
1+1
break
}
end
p bre #=> display 2, but should be nil
```