fix placement of for loop in es6.modules-system hoisting test

This commit is contained in:
Sebastian McKenzie
2015-05-20 10:15:42 +01:00
parent 430c5df0e7
commit de1e965fec

View File

@@ -16,10 +16,10 @@ System.register(["./evens"], function (_export) {
execute: function () {
p = 5;
for (a in b) ;
_export("p", p);
for (a in b) ;
isOdd = (function (isEven) {
return function (n) {
return !isEven(n);