TypeScript/tests/baselines/reference/noTypeArgumentOnReturnType1.errors.txt
2014-07-12 17:30:19 -07:00

9 lines
216 B
Plaintext

==== tests/cases/compiler/noTypeArgumentOnReturnType1.ts (1 errors) ====
class A<T>{
foo(): A{
~
!!! Generic type 'A<T>' requires 1 type argument(s).
return null;
}
}