TypeScript/tests/baselines/reference/parserFunctionPropertyAssignment2.types
2014-12-03 01:55:22 -08:00

5 lines
193 B
Text

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