test: fix the illegal syntax in a module for test

this is related to #1792, after removing the ilegal code,
the code still cover the cases except case 3.
This commit is contained in:
e-cloud 2016-10-26 17:18:06 +08:00
parent a4ad44c31b
commit 4098d29d01
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
export function a() { return "a1"; }
export { a, b } from "./b";
export { b } from "./b";
export * from "./c";
export { d, e } from "./b";
export { d } from "./b";
export var e = "e1";