File: symbolProperty35.errors.txt

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (16 lines) | stat: -rw-r--r-- 700 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
tests/cases/conformance/es6/Symbols/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.


==== tests/cases/conformance/es6/Symbols/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.