Sebastian McKenzie 3ee51dae1a fix semicolon
2014-11-14 00:59:18 +11:00

10 lines
212 B
JavaScript

export * from "OK";
export { name } from "OK";
export { a as b, c as d } from "hello";
export { a as b, c as d };
export {};
export default i = 20;
export function test() {}
export var i = 20;
export let i = 42;