[REPL](https://v3.svelte.technology/repl?version=3.0.0-beta.17&gist=9f60dacc2f84e79122692cf2ccd717c6). This code... ```html <script> export let a = 1; export const b = 2; </script> ``` ...results in this: ```js let { a = 1 } = $$props; const { b = 2 } = $$props; ``` That's wrong — it should be this instead: ```js let { a = 1 } = $$props; const b = 2; ```