TypeScript/tests/baselines/reference/asyncArrowFunction10_es6.js
2015-05-06 17:33:58 -07:00

14 lines
280 B
TypeScript

//// [asyncArrowFunction10_es6.ts]
var foo = async foo(): Promise<void> => {
// Legal to use 'await' in a type context.
var v: await;
}
//// [asyncArrowFunction10_es6.js]
var foo = async, foo = () => {
// Legal to use 'await' in a type context.
var v;
};