mirror of https://github.com/sveltejs/svelte
add semicolon-hoisting test against regression (#2292)
parent
0707f1c25d
commit
ae169cb909
@ -0,0 +1,3 @@
|
|||||||
|
export default {
|
||||||
|
html: ``
|
||||||
|
};
|
@ -0,0 +1,6 @@
|
|||||||
|
<script>
|
||||||
|
let time = new Date()
|
||||||
|
let timeZone = 'UTC'
|
||||||
|
;(() => {
|
||||||
|
})()
|
||||||
|
</script>
|
Loading…
Reference in new issue