tmqhliu (Xiaoding Liu)
- Login: tmqhliu
- Email: tmqhliu@163.com
- Registered on: 09/24/2013
- Last sign in: 11/28/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
09/24/2013
-
04:29 PM Ruby Bug #8946 (Closed): Segmentation fault while NoMemoryError expected
I was trying to watch gc behavior by generating NoMemoryError intentionally, a segmentation fault occurred without any exception raised.
the simple ruby code goes here:
```rb
arr= []
begin
while true
arr << 1
end
...