TypeScript/tests/cases/conformance/expressions/contextualTyping/superCallParameterContextualTyping1.ts

12 lines
295 B
TypeScript

class A<T1, T2> {
constructor(private map: (value: T1) => T2) {
}
}
class B extends A<number, string> {
// Ensure 'value' is of type 'number (and not '{}') by using its 'toExponential()' method.
constructor() { super(value => String(value.toExponential())); }
}