TypeScript/tests/baselines/reference/parserFunctionPropertyAssignment4.types

7 lines
328 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/conformance/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment4.ts ===
var v = { 0<T>() { } };
2015-04-13 23:01:57 +02:00
>v : { 0<T>(): void; }, Symbol(v, Decl(parserFunctionPropertyAssignment4.ts, 0, 3))
>{ 0<T>() { } } : { 0<T>(): void; }
2015-04-13 23:01:57 +02:00
>T : T, Symbol(T, Decl(parserFunctionPropertyAssignment4.ts, 0, 12))
2014-08-15 23:33:16 +02:00