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

9 lines
351 B
Plaintext
Raw Normal View History

2014-09-20 02:58:16 +02:00
tests/cases/conformance/parser/ecmascript5/Protected/Protected4.ts(2,13): error TS1028: Accessibility modifier already seen.
2014-09-19 00:37:16 +02:00
2014-09-20 02:58:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/Protected/Protected4.ts (1 errors) ====
2014-09-19 00:37:16 +02:00
class C {
protected public m() { }
~~~~~~
2014-09-20 02:58:16 +02:00
!!! error TS1028: Accessibility modifier already seen.
}