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

6 lines
213 B
Text

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