TypeScript/tests/baselines/reference/staticAndMemberFunctions.types

11 lines
158 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/staticAndMemberFunctions.ts ===
class T {
>T : T
2014-08-15 23:33:16 +02:00
static x() { }
>x : () => void
2014-08-15 23:33:16 +02:00
public y() { }
>y : () => void
2014-08-15 23:33:16 +02:00
}