mirror of https://github.com/sveltejs/svelte
fix: allow for duplicate `var` declarations (#15382)
parent
bbeeed421b
commit
c2ec0d9ac2
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: allow for duplicate `var` declarations
|
@ -0,0 +1 @@
|
|||||||
|
[]
|
@ -0,0 +1,6 @@
|
|||||||
|
<script>
|
||||||
|
var test = "";
|
||||||
|
var test = 42;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{test}
|
Loading…
Reference in new issue