Closed
Description
I know the title is a bit confusing, but the best way to show off this bug is by just showing the pattern in code 😄
in tests/compiler/reexport.ts
we export {}
an import * as
Then, if we try to import that export in other AS code, it will erorr:
For example:
It is worth noting that if we export {exportstar}
along with the other exports, the final wasm module will correctly have the right exports. Seems to just not be working between AS files 😄