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

15 lines
157 B
TypeScript

class Foo {
public v = "Yo";
}
var f = new Foo();
// WScript.Echo(f[0]);
var o = {v:"Yo2"};
// WScript.Echo(o[0]);
1[0];
var q = "s"[0];