DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / cases / compiler / typeParametersAndParametersInComputedNames.ts
12345678
function foo<T>(a: T) : string { return ""; } class A { [foo<T>(a)]<T>(a: T) { } }