var Fiber = require('fibers');
try {
Fiber(function() {
function foo() {
var hello = Math.random();
foo();
}
}).run();
} catch (err) {
err.name === 'RangeError' && console.log('pass');