TypeScript/tests/cases/compiler/contextuallyTypeArgumentsKeyword.ts
Wesley Wigham 25c3b99f29 Add skip lib check to many tests (#18935)
* Add skip lib check to many tests, do not include unit test duration in profiler duration

* Add a few more skipLibCheck flags

* A few more

* Add more skip lib check flags
2017-10-04 13:14:05 -07:00

13 lines
219 B
TypeScript

// @noEmit: true
// @allowJs: true
// @checkJs: true
// @skipLibCheck: true
// @lib: es2017, dom
// @Filename: foo.js
// Repro for #16585
const x = {
bar() {
setTimeout(function() { arguments }, 0);
}
}