Home
last modified time | relevance | path

Searched defs:a18 (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DcallSignatureAssignabilityInInheritance4.ts44 a18: { property
69 a18: (x: <T>(a: T) => T) => any[]; // ok property
DconstructSignatureAssignabilityInInheritance4.ts44 a18: { property
77 a18: new <T extends Base>(x: T) => number[]; // ok, more general parameter type property
DconstructSignatureAssignabilityInInheritance2.ts57 a18: { property
89 a18: new <T>(x: new (a: T) => T) => T[]; // ok, no inferences for T but assignable to any property
DcallSignatureAssignabilityInInheritance2.ts57 a18: { property
89 a18: <T>(x: (a: T) => T) => T[]; // ok, no inferences for T but assignable to any method