TypeScript/tests/baselines/reference/staticMustPrecedePublic.errors.txt

10 lines
336 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== 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.
}