main.ts: ```ts export function foo<T>(a: T): T { return a; } ``` Currently generate wasm module without `foo` function. Expected: should be compiler error about exporting generic functions/classes are not allowing.
main.ts:
Currently generate wasm module without
foofunction.Expected: should be compiler error about exporting generic functions/classes are not allowing.