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

12 lines
489 B
Plaintext
Raw Normal View History

2015-04-01 02:23:52 +02:00
tests/cases/compiler/interfaceMayNotBeExtendedWitACall.ts(3,24): error TS2499: An interface can only extend an identifier/qualified-name with optional type arguments.
==== tests/cases/compiler/interfaceMayNotBeExtendedWitACall.ts (1 errors) ====
2014-07-13 01:04:16 +02:00
interface color {}
interface blue extends color() { // error
~~~~~~~
2015-04-01 02:23:52 +02:00
!!! error TS2499: An interface can only extend an identifier/qualified-name with optional type arguments.
2014-07-13 01:04:16 +02:00
}