TypeScript/tests/baselines/reference/parserFunctionPropertyAssignment4.types
2014-08-15 14:37:48 -07:00

8 lines
242 B
Plaintext

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