TypeScript/tests/cases/compiler/staticVisibility2.ts

7 lines
151 B
TypeScript
Raw Normal View History

// @noImplicitAny: true
class Square {
static sideLength;
constructor(sideLength: number) {
this.sideLength = sideLength;
}
}