TypeScript/tests/baselines/reference/errorTypesAsTypeArguments.errors.txt

8 lines
241 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/errorTypesAsTypeArguments.ts (2 errors) ====
interface Foo<A> {
bar(baz: Foo<B>): Foo<C>;
~
!!! Cannot find name 'B'.
~
!!! Cannot find name 'C'.
}