TypeScript/tests/cases/compiler/typeVal.ts

8 lines
65 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
interface I {
I:number;
}
var I:I = { I: 3};
I.I=4;