fix semicolon

This commit is contained in:
Sebastian McKenzie
2014-11-14 00:59:18 +11:00
parent 20263c1151
commit 3ee51dae1a

View File

@@ -4,6 +4,6 @@ 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 function test() {}
export var i = 20;
export let i = 42;