TypeScript/tests/baselines/reference/parserFunctionPropertyAssignment2.types
2015-04-15 16:44:20 -07:00

6 lines
185 B
Plaintext

=== tests/cases/conformance/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment2.ts ===
var v = { 0() { } };
>v : { 0(): void; }
>{ 0() { } } : { 0(): void; }