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

9 lines
360 B
Plaintext
Raw Normal View History

tests/cases/compiler/arrayReferenceWithoutTypeArgs.ts(2,17): error TS2314: Generic type 'Array<T>' requires 1 type argument(s).
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/arrayReferenceWithoutTypeArgs.ts (1 errors) ====
class X {
public f(a: Array) { }
~~~~~
!!! error TS2314: Generic type 'Array<T>' requires 1 type argument(s).
2014-07-13 01:04:16 +02:00
}