TypeScript/tests/cases/compiler/argumentsReferenceInConstructor6_Js.ts

14 lines
177 B
TypeScript

// @declaration: true
// @allowJs: true
// @emitDeclarationOnly: true
// @filename: /a.js
class A {
constructor() {
/**
* @type object
*/
this.foo = arguments;
}
}