TypeScript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target6.ts
Wesley Wigham eb80799ef0 Care about esnext where we look for es2015 (#18331)
* Care about esnext where we look for es2015

* Update diagnostic message to be more agnostic
2017-09-09 16:30:06 -07:00

11 lines
148 B
TypeScript

// @target: es5
// @module: esnext
export function f1(d = 0) {
}
export function f2(...arg) {
}
export default function f3(d = 0) {
}