Home
last modified time | relevance | path

Searched refs:FooFn2 (Results 1 – 5 of 5) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DvarianceAnnotations.js74 f: FooFn2<T>;
77 type FooFn2<T> = (foo: Bar2<T[]>) => void;
265 f: FooFn2<T>;
267 type FooFn2<T> = (foo: Bar2<T[]>) => void;
DvarianceAnnotations.types152 f: FooFn2<T>;
153 >f : FooFn2<T>
156 type FooFn2<T> = (foo: Bar2<T[]>) => void;
157 >FooFn2 : FooFn2<T>
DvarianceAnnotations.symbols195 f: FooFn2<T>;
197 >FooFn2 : Symbol(FooFn2, Decl(varianceAnnotations.ts, 73, 1))
201 type FooFn2<T> = (foo: Bar2<T[]>) => void;
202 >FooFn2 : Symbol(FooFn2, Decl(varianceAnnotations.ts, 73, 1))
DvarianceAnnotations.errors.txt40 Type 'FooFn2<sub-T>' is not assignable to type 'FooFn2<super-T>'.
196 !!! error TS2636: Type 'FooFn2<sub-T>' is not assignable to type 'FooFn2<super-T>'.
199 f: FooFn2<T>;
202 type FooFn2<T> = (foo: Bar2<T[]>) => void;
/third_party/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/
DvarianceAnnotations.ts76 f: FooFn2<T>;
79 type FooFn2<T> = (foo: Bar2<T[]>) => void; alias