File: symbolProperty35.errors.txt

package info (click to toggle)
node-typescript 5.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 497,488 kB
  • sloc: javascript: 2,107,274; makefile: 6; sh: 1
file content (16 lines) | stat: -rw-r--r-- 628 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
symbolProperty35.ts(8,11): error TS2320: Interface 'I3' cannot simultaneously extend types 'I1' and 'I2'.
  Named property '[Symbol.toStringTag]' of types 'I1' and 'I2' are not identical.


==== symbolProperty35.ts (1 errors) ====
    interface I1 {
        [Symbol.toStringTag](): { x: string }
    }
    interface I2 {
        [Symbol.toStringTag](): { x: number }
    }
    
    interface I3 extends I1, I2 { }
              ~~
!!! error TS2320: Interface 'I3' cannot simultaneously extend types 'I1' and 'I2'.
!!! error TS2320:   Named property '[Symbol.toStringTag]' of types 'I1' and 'I2' are not identical.