Skip to content

Commit 4846d29

Browse files
authored
Merge pull request webpack#3193 from e-cloud/fix-1792
fix the illegal syntax in a module for test
2 parents 765a65f + 01f36a7 commit 4846d29

File tree

1 file changed

+2
-2
lines changed
  • test/cases/parsing/harmony-export-precedence

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export function a() { return "a1"; }
2-
export { a, b } from "./b";
2+
export { b } from "./b";
33
export * from "./c";
4-
export { d, e } from "./b";
4+
export { d } from "./b";
55
export var e = "e1";

0 commit comments

Comments
 (0)