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

7 lines
242 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/invalidSymbolInTypeParameter1.ts (1 errors) ====
function test() {
var cats = new Array<WAWA>(); // WAWA is not a valid type
~~~~
!!! Cannot find name 'WAWA'.
}