File: complicatedGenericRecursiveBaseClassReference.types

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (17 lines) | stat: -rw-r--r-- 376 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
=== tests/cases/compiler/complicatedGenericRecursiveBaseClassReference.ts ===
class S18<B, A, C> extends S18<A[], { S19: A; (): A }[], C[]>
>S18 : S18<B, A, C>
>S18 : typeof S18
>S19 : A
{
}
(new S18(123)).S18 = 0;
>(new S18(123)).S18 = 0 : 0
>(new S18(123)).S18 : any
>(new S18(123)) : any
>new S18(123) : any
>S18 : typeof S18
>123 : 123
>S18 : any
>0 : 0