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

14 lines
448 B
Text
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/RegressionTests/parser553699.ts(3,21): error TS2304: Cannot find name 'public'.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/RegressionTests/parser553699.ts (1 errors) ====
class Foo {
constructor() { }
public banana (x: public) { }
~~~~~~
!!! error TS2304: Cannot find name 'public'.
2014-07-13 01:04:16 +02:00
}
class Bar {
constructor(c: Bar) { }
}