diff --git a/test/runtime/samples/destructuring-between-exports/_config.js b/test/runtime/samples/destructuring-between-exports/_config.js new file mode 100644 index 0000000000..56061f510f --- /dev/null +++ b/test/runtime/samples/destructuring-between-exports/_config.js @@ -0,0 +1,8 @@ +export default { + props: { + foo: { bar: 42 } + }, + html: ` +

42

+ ` +}; \ No newline at end of file diff --git a/test/runtime/samples/destructuring-between-exports/main.svelte b/test/runtime/samples/destructuring-between-exports/main.svelte new file mode 100644 index 0000000000..17cc8dc17d --- /dev/null +++ b/test/runtime/samples/destructuring-between-exports/main.svelte @@ -0,0 +1,7 @@ + + +

{bar}

\ No newline at end of file