TypeScript/tests/baselines/reference/functionDeclarationWithResolutionOfTypeNamedArguments01.js
2015-06-02 13:03:16 -07:00

12 lines
240 B
TypeScript

//// [functionDeclarationWithResolutionOfTypeNamedArguments01.ts]
interface arguments {
}
function f() {
<arguments>arguments;
}
//// [functionDeclarationWithResolutionOfTypeNamedArguments01.js]
function f() {
arguments;
}