TypeScript/tests/baselines/reference/es6modulekind.types
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

17 lines
225 B
Plaintext

=== tests/cases/conformance/externalModules/es6/es6modulekind.ts ===
export default class A
>A : A
{
constructor ()
{
}
public B()
>B : () => number
{
return 42;
>42 : 42
}
}