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

22 lines
574 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/types/specifyingTypes/predefinedTypes/objectTypesWithPredefinedTypesAsName.ts (4 errors) ====
// it is an error to use a predefined type as a type name
class any { }
~~~
!!! Class name cannot be 'any'
class number { }
~~~~~~
!!! Class name cannot be 'number'
class boolean { }
~~~~~~~
!!! Class name cannot be 'boolean'
class bool { } // not a predefined type anymore
class string { }
~~~~~~
!!! Class name cannot be 'string'