TypeScript/tests/baselines/reference/genericClassStaticMethod.types

22 lines
292 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/genericClassStaticMethod.ts ===
class Foo<T> {
>Foo : Foo<T>
>T : T
static getFoo() {
>getFoo : () => void
}
}
class Bar<T> extends Foo<T> {
>Bar : Bar<T>
>T : T
>Foo : Foo<T>
2014-08-15 23:33:16 +02:00
>T : T
static getFoo() {
>getFoo : () => void
}
}