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

11 lines
361 B
Plaintext
Raw Normal View History

tests/cases/compiler/constructorArgsErrors4.ts(2,26): error TS1028: Accessibility modifier already seen.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/constructorArgsErrors4.ts (1 errors) ====
class foo {
constructor (private public a: number) {
~~~~~~
!!! error TS1028: Accessibility modifier already seen.
2014-07-13 01:04:16 +02:00
}
}