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

9 lines
291 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/staticModifierAlreadySeen.ts (2 errors) ====
class C {
static static foo = 1;
~~~~~~
!!! 'static' modifier already seen.
public static static bar() { }
~~~~~~
!!! 'static' modifier already seen.
}