``` ts class C { constructor(options?: number) { var options = (options || 0); // !!! error TS2687: All declarations of 'options' must have identical modifiers. } } ```