TypeScript/tests/cases/compiler/staticVisibility2.ts
2020-06-26 11:08:35 -07:00

7 lines
151 B
TypeScript

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