TypeScript/tests/cases/compiler/indexerAsOptional.ts
2014-07-12 17:30:19 -07:00

9 lines
194 B
TypeScript

interface indexSig {
//Index signatures can't be optional
[idx?: number]: any; //err
}
class indexSig2 {
//Index signatures can't be optional
[idx?: number]: any //err
}