TypeScript/tests/cases/conformance/es6/classDeclaration/exportDefaultClassWithStaticPropertyAssignmentsInES6.ts

4 lines
No EOL
72 B
TypeScript

// @target:es6
export default class {
static z: string = "Foo";
}