Guy Bedford 3fa4f53d0a System module format - fixes function hoisting failure case (#8820)
* failing test case

* fix function hoist bug
2018-10-07 23:30:02 -04:00

11 lines
119 B
JavaScript

var testProp = 'test property';
function testFunc() {
return 'test function';
}
export {
testFunc,
testProp
};