mirror of https://github.com/webpack/webpack.git
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:
parent
a4ad44c31b
commit
4098d29d01
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in New Issue