-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't pass prop.name directly for error reporting
- Loading branch information
1 parent
6a6c03b
commit 92617f5
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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. | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
JsonFreeman
Author
Contributor
|
Minor: I don't think we need square bracket