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

11 lines
666 B
Plaintext
Raw Normal View History

tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration6_es6.ts(1,24): error TS2524: 'await' expressions cannot be used in a parameter initializer.
tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration6_es6.ts(1,29): error TS1109: Expression expected.
2015-05-07 02:33:58 +02:00
==== tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration6_es6.ts (2 errors) ====
2015-05-07 02:33:58 +02:00
async function foo(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
}