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

7 lines
205 B
Plaintext

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