TypeScript/tests/cases/compiler/constDeclarations2.ts

10 lines
189 B
TypeScript
Raw Normal View History

// @target: ES6
// @declaration: true
// No error
module M {
export const c1 = false;
export const c2: number = 23;
export const c3 = 0, c4 :string = "", c5 = null;
}