TypeScript/tests/cases/compiler/es6modulekindWithES5Target2.ts
2016-06-08 16:43:56 -07:00

8 lines
117 B
TypeScript

// @target: es5
// @module: es2015
export default class C {
static s = 0;
p = 1;
method() { }
}