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

13 lines
637 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/RegressionTests/parser618973.ts(1,8): error TS1030: 'export' modifier already seen.
2015-04-27 03:31:47 +02:00
tests/cases/conformance/parser/ecmascript5/RegressionTests/parser618973.ts(1,21): error TS1148: Cannot compile modules unless the '--module' flag is provided.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/RegressionTests/parser618973.ts (2 errors) ====
export export class Foo {
~~~~~~
!!! error TS1030: 'export' modifier already seen.
~~~
2015-04-27 03:31:47 +02:00
!!! error TS1148: Cannot compile modules unless the '--module' flag is provided.
2014-07-13 01:04:16 +02:00
public Bar() {
}
}