var foo = function() { } // parse error, semicolon expected test()
var foo = function() { }; // no error, parser continues test()