mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
|
|
class A<T1, T2> {
|
|
constructor(private map: (value: T1) => T2) {
|
|
|
|
}
|
|
}
|
|
|
|
class C extends A<number, string> {
|
|
// Ensure 'value' is not of type 'any' by invoking it with type arguments.
|
|
constructor() { super(value => String(value<string>())); }
|
|
} |