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

12 lines
645 B
Text
Raw Normal View History

tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction6_es6.ts(2,22): error TS2524: 'await' expressions cannot be used in a parameter initializer.
tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction6_es6.ts(2,27): error TS1109: Expression expected.
2015-05-07 02:33:58 +02:00
==== tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction6_es6.ts (2 errors) ====
2015-05-07 02:33:58 +02:00
var foo = async (a = await): Promise<void> => {
2015-05-07 20:13:45 +02:00
~~~~~
!!! error TS2524: 'await' expressions cannot be used in a parameter initializer.
~
!!! error TS1109: Expression expected.
2015-05-07 02:33:58 +02:00
}