TypeScript/tests/cases/compiler/strictBooleanMemberAssignability.ts

7 lines
103 B
TypeScript

// @strict: true
class Abc {
def: boolean
constructor() {
this.def = true
}
}