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

11 lines
511 B
Text
Raw Normal View History

2015-05-07 20:13:45 +02:00
tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration7_es6.ts(3,26): error TS2304: Cannot find name 'await'.
2015-05-07 02:33:58 +02:00
==== tests/cases/conformance/async/es6/functionDeclarations/asyncFunctionDeclaration7_es6.ts (1 errors) ====
async function bar(): Promise<void> {
// 'await' here is an identifier, and not a yield expression.
async function foo(a = await): Promise<void> {
2015-05-07 20:13:45 +02:00
~~~~~
!!! error TS2304: Cannot find name 'await'.
2015-05-07 02:33:58 +02:00
}
}