TypeScript/tests/baselines/reference/staticMustPrecedePublic.errors.txt
2014-07-12 17:30:19 -07:00

10 lines
336 B
Plaintext

==== tests/cases/compiler/staticMustPrecedePublic.ts (2 errors) ====
class Outer {
static public intI: number;
~~~~~~
!!! 'public' modifier must precede 'static' modifier.
static private stringF: string;
~~~~~~~
!!! 'private' modifier must precede 'static' modifier.
}